When you are developing a JSP file for use with a PageHandler, you can specify literal text for labels, as well as for the hover-help text that is displayed when the user places the cursor over an input field. When you are developing the PageHandler itself, you can set the default values for that literal text by setting the primitive field-level properties displayName and help for a given field.
<f:loadBundle baseName=fileName var=variableName>
An example is as follows:
<f:loadBundle baseName="Resources" var="labels"/>
<h:output_text value="#{variableName.key}"
<h:output_text value="#{labels.label1}"
To identify the resource bundle or properties file used for runtime messages, set the PageHandler part property msgResource.
Related concepts
PageHandler
Related reference
displayName
help
PageHandler part properties