Skip to content

Instantly share code, notes, and snippets.

@sebbaum
Created September 20, 2015 09:42
Show Gist options
  • Save sebbaum/f880eea537d94350b8fa to your computer and use it in GitHub Desktop.
Save sebbaum/f880eea537d94350b8fa to your computer and use it in GitHub Desktop.
web.xml for jsf projects (using BootsFaces)
<?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">
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
<context-param>
<param-name>BootsFaces_USETHEME</param-name>
<param-value>true</param-value>
</context-param>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment