previous
|
start
|
next
JavaBeans Components
Access the bean properties in value bindings
<h:outputText value="#{user.creditCard}"/>
Specify the name of the property, not the name of the get or set methods
<h:inputText value="#{user.creditCard}"/>
first calls
getCreditCard
When the user submits the form, the
setCreditCard
is called to store the edited property value
previous
|
start
|
next