Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
  3. <context-param>
  4. <param-name>javax.faces.PROJECT_STAGE</param-name>
  5. <param-value>Development</param-value>
  6. </context-param>
  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. <servlet-mapping>
  17. <servlet-name>Faces Servlet</servlet-name>
  18. <url-pattern>*.jsf</url-pattern>
  19. </servlet-mapping>
  20. <servlet-mapping>
  21. <servlet-name>Faces Servlet</servlet-name>
  22. <url-pattern>*.faces</url-pattern>
  23. </servlet-mapping>
  24. <servlet-mapping>
  25. <servlet-name>Faces Servlet</servlet-name>
  26. <url-pattern>*.xhtml</url-pattern>
  27. </servlet-mapping>
  28. <session-config>
  29. <session-timeout>
  30. 30
  31. </session-timeout>
  32. </session-config>
  33. <welcome-file-list>
  34. <welcome-file>index.xhtml</welcome-file>
  35. </welcome-file-list>
  36. <resource-ref>
  37. <res-ref-name>jdbc/rec</res-ref-name>
  38. <res-type>javax.sql.ConnectionPoolDataSource</res-type>
  39. <res-auth>Container</res-auth>
  40. <res-sharing-scope>Shareable</res-sharing-scope>
  41. </resource-ref>
  42. <filter>
  43. <filter-name>LoggedInFilter</filter-name>
  44. <filter-class>kth.iv1201.recruitment.filter.LoggedInFilter</filter-class>
  45. </filter>
  46. <filter-mapping>
  47. <filter-name>LoggedInFilter</filter-name>
  48. <url-pattern>/secured/*</url-pattern>
  49. </filter-mapping>
  50. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement