Note that I got stuck when I tried to use the function used in the previous programming in the new environment
I was angry with Eclipse when I wrote the following as usual.
function
msgStr = MsgList.getMsg("hoge", hoge);
Static I don't want to refer to this message, but it doesn't disappear.
When I looked up the solution, it was an error that came from a simple mistake.
Instantiated function
MsgList msgList = new MsgList();
msgStr = msgList.getMsg("hoge", hoge);
This solved it.
It's just a mistake, but maybe it's the path most people take. It took me quite a while to resolve it, but I hope it helps.