Where to place properties files and WAR
I have a properties file called context.properties under WEB-INF directory in 11g JDeveloper. When I tried to read it from a Java program as below
ResourceBundle rb = ResourceBundle.getBundle("context");
I always got the throwMissingResourceException.
Is the WEB-INF the correct place to put properties files? How do we make it so the files are readable from a java program?
Thanks,
Andy