Apache MyFaces Tomahawk Sandbox (supports JSF 1.2)

Namespaces: http://myfaces.apache.org/sandbox (prefix: s)

A JSF web.xml file configured for Apache MyFaces Tomahawk Sandbox is the same as the one for Apache MyFaces Tomahawk.

Apache MyFaces Commons Validators (supports JSF 2.0)

Namespaces: http://myfaces.apache.org/commons/validators (prefix: mvc)

A JSF web.xml file does not contain special configurations for Apache MyFaces Commons Validators.

Prime Faces (supports JSF 2.0)

Namespaces: http://primefaces.prime.com.tr/ui (prefix: p)

In any JSF page that uses PrimeFaces, you should place in the <head> section the following tag. This tag loads PrimeFaces resources:

<p:resources />

A JSF web.xml file configured for PrimeFaces look like this (the bolded code is specific to PrimeFaces):

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.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-app_3_0.xsd">
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>server</param-value>
</context-param>
<context-param>
<description>
Parameter required by PrimeFaces 2.0 and Mojarra 2.0
</description>
<param-name>com.sun.faces.allowTextChildren</param-name>
<param-value>true</param-value>
</context-param>
<servlet>
<description>This servlet injects PrimeFaces 2.0</description>
<servlet-name>Resource Servlet</servlet-name>
<servlet-class>org.primefaces.resource.ResourceServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Resource Servlet</servlet-name>
<url-pattern>/primefaces_resource/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
</web-app>

If you need to use the PrimeFaces upload support, you need to configure the PrimeFaces FileUpload Filter like this (this should be the first filter in web.xml):

<filter>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<filter-class>org.primefaces.webapp.filter.FileUploadFilter</filter-class>
<init-param>
<param-name>thresholdSize</param-name>
<param-value>51200</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>PrimeFaces FileUpload Filter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset