I am with the following problem. In my Application Resources, I own:
conf.bol.caminho.padrao = "padrao.jsp"
So I wanted to do the following: I want to load into a String key (conf.bol.caminho.padrao)
example:
String text = "conf.bol.caminho.padrao";
System.out.println(text);
Result:
padrao.jsp
How to do it?