Configuración de regla de navegación para JSF. Pruebas con primefaces Nuevo ManagedBean para pantalla home. Pagina de login para pruebas.
17 lines
516 B
XML
17 lines
516 B
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<faces-config version="2.0"
|
|
xmlns="http://java.sun.com/xml/ns/javaee"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd">
|
|
|
|
<navigation-rule>
|
|
<from-view-id>/login.xhtml</from-view-id>
|
|
<navigation-case>
|
|
<from-outcome>home</from-outcome>
|
|
<to-view-id>/home.xhtml</to-view-id>
|
|
</navigation-case>
|
|
</navigation-rule>
|
|
|
|
|
|
</faces-config> |