Advertisement
Guest User

Untitled

a guest
Oct 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app id="WebApp_ID" 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. <display-name>aulaJSF</display-name>
  4. <welcome-file-list>
  5. <welcome-file>index.html</welcome-file>
  6. <welcome-file>index.htm</welcome-file>
  7. <welcome-file>index.jsp</welcome-file>
  8. <welcome-file>default.html</welcome-file>
  9. <welcome-file>default.htm</welcome-file>
  10. <welcome-file>default.jsp</welcome-file>
  11. </welcome-file-list>
  12. <servlet>
  13. <servlet-name>JavaServletFaces</servlet-name>
  14. <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
  15. </servlet>
  16.  
  17. <servlet-mapping>
  18. <servlet-name>JavaServletFaces</servlet-name>
  19. <url-pattern>*.xhtml</url-pattern>
  20. </servlet-mapping>
  21. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement