Where do I need to put the properties file
Put in the classpath for the runtime to be available.
for a web application put it in WEB-INF/classes/for jar, add it to some package, and then
ResourceBundle.getBundle("some/package/resources.properties");
source
share