1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <?xml version="1.0"?>
<!DOCTYPE faces-config PUBLIC
"-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
"http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
<faces-config>
<application>
<view-handler>org.jboss.portletbridge.application.PortletViewHandler</view-handler>
</application>
<factory>
<faces-context-factory>org.jboss.portletbridge.context.FacesContextFactoryImpl</faces-context-factory>
</factory>
<managed-bean>
<description>Echo Bean</description>
<managed-bean-name>echo</managed-bean-name>
<managed-bean-class>net.demo.EchoBean</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
<managed-property>
<property-name>text</property-name>
<value />
</managed-property>
</managed-bean>
<navigation-rule>
<navigation-case>
<from-action>echo2</from-action>
<to-view-id>/pages/echo2.xhtml</to-view-id>
</navigation-case>
</navigation-rule>
</faces-config> |
Partager