When and how should I use <resource-bundle> and <message-bundle> tags for localization in faces-config.xml? The differences between those two are not very clear to me.
When and how should I use <resource-bundle> and <message-bundle> tags for localization in faces-config.xml
Share
<message-bundle>
The
<message-bundle>is to be used whenever you want to override JSF default warning/error messages which is been used by the JSF validation/conversion stuff.You can find keys of the default warning/error messages in chapter 2.5.2.4 of the JSF specification.
For example,
Messages_xx_XX.propertiesfiles incom.example.i18npackage as below which overrides the defaultrequired="true"message:com/example/i18n/Messages_en.propertiescom/example/i18n/Messages_nl.propertiescan be configured as follows (without the locale specifier
_xx_XXand the file extension!):<resource-bundle>
The
<resource-bundle>is to be used whenever you want to register a localized resource bundle which is available throughout the entire JSF application without the need to specify<f:loadBundle>in every single view.For example,
Text_xx_XX.propertiesfiles incom.example.i18npackage as below:com/example/i18n/Text_en.propertiescom/example/i18n/Text_nl.propertiescan be configured as follows (without the locale specifier
_xx_XXand the file extension!):and be used in
main.xhtmlas follows:ValidationMessages (JSR303 Bean Validation)
Since Java EE 6 / JSF 2, there’s also the new JSR303 Bean Validation API which is represented by those
@NotNull,Size,@Max, etc annotations of thejavax.validation.constraintspackage. You should understand that this API is completely unrelated to JSF. It is not part of JSF, but JSF just happens to have support for it during validations phase. I.e. it determines and recognizes the presence of a JSR303 implementation (e.g. Hibernate Validator) and then delegates the validation to it (which can be disabled by using<f:validateBean disabled="true"/>, by the way).As per chapter 4.3.1.1 of the JSR303 specification, the custom JSR303 validation messages file needs to have exactly the name
ValidationMessages_xx_XX.propertiesand it needs to be placed in the root of the classpath (thus, not in a package!).Localization
In the above examples, the
_xx_XXin the filename represents the (optional) language and country codes. If this is absent altogether, then it becomes the default (fallback) bundle. If the language is present, e.g._en, then it’ll be used when the client has explicitly requested for this language in theAccept-LanguageHTTP request header. The same applies to the country, e.g._en_USor_en_GB.You can specify the supported locales for both the message and resource bundle generically in
<locale-config>element offaces-config.xml.The desired locale needs to be set via
<f:view locale>. See also Localization in JSF, how to remember selected locale per session instead of per request/view.