VideoTutorial 4 del Taller Práctico de Java Server Faces. Reglas de Navegación.
- Invoke template through welcome file tag
- Implicit Navigation
<h:commandLink value="" action="inicio">
- translated to an anchor <a>
- plus JS <script> + <a> anchor + form post action to same address
<h:commandButton value="" action="inicio">
- translated to a <input> type submit + form post action to same address
<h:link value="" outcome="inicio">
- translated to an anchor <a>
- direct link to inicio.xhtml
- Dynamic Navigation
<h:commandLink value="" action="page1">
- translated to an anchor <a>
- plus JS <script> + <a> anchor + form post action to page1.xhtml
<h:commandLink value="" action="#{bean.method()}">
- configuration in faces-config.xml for navigation rules
- configuration in faces-config.xml for managed bean
<hr/>
<hr/>
<hr/>
<hr/>
<hr/>
<hr/>
<hr/>
<hr/>
<hr/>
<hr/>
<hr/>
<hr/>
<hr/>