Skip to content

Instantly share code, notes, and snippets.

@fwfurtado
Last active October 3, 2016 07:25
Show Gist options
  • Save fwfurtado/6b9850522ab1e13cc0adefd5f8af1f5d to your computer and use it in GitHub Desktop.
Save fwfurtado/6b9850522ab1e13cc0adefd5f8af1f5d to your computer and use it in GitHub Desktop.
[FJ-37] web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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"
version="3.1">
<display-name>casadocodigo</display-name>
<servlet>
<servlet-name>jsf</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>jsf</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment