Articles avec le mot clé « Properties » :
Property Files containing HTML encoded messages with JSF 1.1 and 1.2
Just use the escape attribute to avoid HTML code to be encoded again.\
For example with the following JSF fragment
...
<h:outputText value="#{messages['TITEL']}" escape="false"/>
...
this part of the message.properties is displayed correct
TITEL=About Ü and Ö
Wrong Accessibility Of Inner Class Members in Bean Class Causes PropertyNotFoundException with JSF 1.1 and 1.2
If you get the Exception
...
javax.faces.el.PropertyNotFoundException
...
the specified property cannot be found in the bean.
First thing is to check the accessors and their accessibility. In my case I had all needed accessors and their accessibility, but they were specified in an Inner Class within the bean …