aslak

Package-time Class manipulation

Mar 17th, 2010
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.97 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  4.   version="3.0">
  5.  
  6.    <context-param>
  7.       <param-name>javax.faces.PROJECT_STAGE</param-name>
  8.       <param-value>Development</param-value>
  9.    </context-param>
  10.    <context-param>
  11.       <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
  12.       <param-value>.xhtml</param-value>
  13.    </context-param>
  14.    
  15.    <servlet>
  16.       <servlet-name>Faces Servlet</servlet-name>
  17.       <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
  18.       <load-on-startup>1</load-on-startup>
  19.    </servlet>
  20.  
  21.    <servlet-mapping>
  22.       <servlet-name>Faces Servlet</servlet-name>
  23.       <url-pattern>*.jsf</url-pattern>
  24.    </servlet-mapping>
  25.  
  26.    <welcome-file-list>
  27.       <welcome-file>index.xhtml</welcome-file>
  28.    </welcome-file-list>
  29. </web-app>
Add Comment
Please, Sign In to add comment