Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.68 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.     <servlet>
  7.         <servlet-name>Faces Servlet</servlet-name>
  8.         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
  9.         <load-on-startup>1</load-on-startup>
  10.     </servlet>
  11.     <servlet-mapping>
  12.         <servlet-name>Faces Servlet</servlet-name>
  13.         <url-pattern>*.xhtml</url-pattern>
  14.     </servlet-mapping>
  15.     <filter>
  16.         <filter-name>PageFilter</filter-name>
  17.         <filter-class>br.com.teste.recurso.filter.PageFilter</filter-class>
  18.     </filter>
  19.     <filter-mapping>
  20.         <filter-name>PageFilter</filter-name>
  21.         <url-pattern>/*</url-pattern>
  22.     </filter-mapping>
  23.     <session-config>
  24.         <session-timeout>60</session-timeout>
  25.     </session-config>
  26.     <listener>
  27.         <listener-class>br.com.teste.recurso.filter.SessionListener</listener-class>
  28.     </listener>
  29.     <context-param>
  30.         <param-name>primefaces.FONT_AWESOME</param-name>
  31.         <param-value>false</param-value>
  32.     </context-param>
  33.     <context-param>
  34.         <param-name>facelets.SKIP_COMMENTS</param-name>
  35.         <param-value>true</param-value>
  36.     </context-param>
  37.     <context-param>
  38.         <param-name>primefaces.THEME</param-name>
  39.         <param-value>none</param-value>
  40.     </context-param>
  41.     <welcome-file-list>
  42.         <welcome-file>login.xhtml</welcome-file>
  43.         <welcome-file>index.xhtml</welcome-file>
  44.     </welcome-file-list>
  45. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement