I have some doubts on how localization works with composite components in JSF, i want to understand well how it works.
So i decided to practice localization for composite components with a little example.
Following the recommendations i created a .properties file in the exactly same folder where the composite component is(A subfolder of WebContent/resources)
labelField1 = FIELD 1
labelField2 = FIELD 2
Then i used #{cc.resourceBundleMap. to add the localized text to the components implmentation:
<html>
<composite:interface>
...
</composite:interface>
<composite:implementation>
<h:form>
<h:outputText value="#{cc.resourceBundleMap.labelField1}"/>
...
<h:outputText value="#{cc.resourceBundleMap.labelField2}"/>
...
</h:form>
</composite:implementation>
</html>
The problem when i run the application is this:
SEVERE: Error Rendering View[/index.xhtml]
javax.el.ELException: /resources/custom/demoCustomComponent.xhtml @14,63 value="#{cc.resourceBundleMap.labelField1}": java.lang.NullPointerException
....
Caused by: java.lang.NullPointerException
at javax.faces.component.UIComponent.findComponentResourceBundleLocaleMatch(UIComponent.java:1000)
...
My questions are:
-Do i need to manually load somehow that message bunddle or this should happend automatically?
-Can other message bundles in my app outside the folder where the composite component is, disturb this one?(I also have a message_en.properties somewhere else in the app, for the templates and other parts of the UI)
-How can i fix it?