Advertisement
Guest User

Untitled

a guest
May 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <?xml version = "1.0" encoding = "UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://java.sun.com/xml/ns/javaee"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  6. id="WebApp_ID" version="2.5">
  7. <servlet>
  8. <servlet-name>Faces Servlet</servlet-name>
  9. <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
  10. <load-on-startup>1</load-on-startup>
  11. </servlet>
  12. <servlet-mapping>
  13. <servlet-name>Faces Servlet</servlet-name>
  14. <url-pattern>*.xhtml</url-pattern>
  15. </servlet-mapping>
  16.  
  17. <context-param>
  18. <param-name>javax.faces.PROJECT_STAGE</param-name>
  19. <param-value>Development</param-value>
  20. </context-param>
  21. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement