This question is related to JSF, but i think even resourcebundle answers might help.
I am trying to load a properties file in a faces-config.xml file
<resource-bundle>
<base-name>myconfig</base-name>
<var>myConfig/var>
</resource-bundle>
This would work i assume. However, what I really want to do is:
<resource-bundle>
<base-name>my.config</base-name> (Note the name has a ".")
<var>myconfig</var>
</resource-bundle>
I want this code to load a my.config.properties file from where it would have normally picked up myconfig.properties file.
Instead this seems to be looking for config.properties in a "/my" location on the classpath.