I am new to JSF an was trying out this piece of code.. This is my faces-config.xml:
<application>
<resource-bundle>
<base-name>messages</base-name>
<var>msg</var>
</resource-bundle>
</application>
messages is a file that stores a few properties and messages file is not placed under any directory, it is placed directly under the application. Why cant i access this file? Thank you in advance.. please do let me know if you need any additional information..
To fix the MissingResourceException , it should be ensured that any resource required by the program exists with the correct name and at the right location. Any values attempted to be retrieved from a resource file using a key should exist with the right key.
Creating a ResourceBundle You create a ResourceBundle instance like this: Locale locale = new Locale("en", "US"); ResourceBundle labels = ResourceBundle. getBundle("i18n. MyBundle", locale); System.
getBundle. Gets a resource bundle using the specified base name, locale, and class loader. This method behaves the same as calling getBundle(String, Locale, ClassLoader, Control) passing a default instance of ResourceBundle.
looks like your file placed in some package inside your src
folder
<base-name>some.package.name.Messages</base-name>
also make sure the file called Messages.properties
b.t.w are you aware that Messages.properties
file will allow you to override your validators error messages?
Also, take a look at this nice tutorial JSF 2 message and messages example
If you put it in directly into src folder it should work. Athough I would suggest to organize the message files in packages.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With