previous | index | next

JSF Pages and Bean Properties

Input field values are bound to bean properties. For example (from index.jsp),
     <h:inputText value="#{user.name}"/> 
Output field values can also be bound to bean properties. For example (from welcome.jsp) ,
     <h:outputText value="#{user.name}"/> 

previous | index | next