web.xml
[Previous] [Main] [Next]

WEB.XML

<?xml version="1.0"?>

<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
<-- Starts the Servlet
</servlet>

<servlet-mapping>
<-- Configures how to id a JSF
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.faces</url-pattern>
</servlet-mapping>

<welcome-file-list>
<-- File to run as the default
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>