Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  5. version="3.1">
  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>primefaces.THEME</param-name>
  12. <param-value>home</param-value>
  13. </context-param>
  14. <servlet>
  15. <servlet-name>Faces Servlet</servlet-name>
  16. <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
  17. <load-on-startup>1</load-on-startup>
  18. </servlet>
  19. <servlet-mapping>
  20. <servlet-name>Faces Servlet</servlet-name>
  21. <url-pattern>*.xhtml</url-pattern>
  22. </servlet-mapping>
  23. <session-config>
  24. <session-timeout>30</session-timeout>
  25. </session-config>
  26. <welcome-file-list>
  27. <welcome-file>index.xhtml</welcome-file>
  28. </welcome-file-list>
  29. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement