Java Reference
In-Depth Information
If you use the application configuration resource file to configure managed beans instead
of defining them in managed bean classes, the name of the bean in the value expression
must match the managed-bean-name element of the managed bean declaration up to
the first period ( . ) in the expression. Similarly, the part of the value expression after the
period must match the name specified in the corresponding property-name element
in the application configuration resource file.
For example, consider this managed bean configuration, which configures the
ImageArea bean corresponding to the top left book in the image map on the in-
dex.html page of the Duke's Bookstore case study:
Click here to view code image
<managed-bean eager="true">
...
<managed-bean-name> Book201 </managed-bean-name>
<managed-bean-class> dukesbookstore.model.ImageArea </managed-
bean-class>
<managed-bean-scope> application </managed-bean-scope>
<managed-property>
...
<property-name>shape</property-name>
<value>rect</value>
</managed-property>
<managed-property>
...
<property-name>alt</property-name>
<value>Duke</value>
</managed-property>
...
This example configures a bean called Book201 , which has several properties, one of
which is called shape .
Although the bookstore:area tags on the index.xhtml page do not bind to an
ImageArea property (they bind to the bean itself), you could refer to the property using
a value expression from the value attribute of the component's tag:
<h:outputText value="#{Book201.shape}" />
See “ Configuring Managed Beans ” on page 146 for information on how to configure
beans in the application configuration resource file.
Search WWH ::




Custom Search