<?xml version="1.0" encoding="UTF-8"?> xml版本,指定编码格式
<web-app version="3.1“
xmlns="http://xmlns.jcp.org/xml/ns/javaee" xml namespace
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 指定namespace空间
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"> 定义xsi内容
<context-param> 上下文参数
<param-name>javax.faces.PROJECT_STAGE</param-name> 参数名
<param-value>Development</param-value> 参数值
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name> servlet名
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class> servlet名对应的类,包
<load-on-startup>1</load-on-startup> 加载就启动
</servlet>
<servlet-mapping> servlet映射
<servlet-name>Faces Servlet</servlet-name> 对应上面的servlet名
<url-pattern>*.xhtml</url-pattern> 路由形式,这里指访问后缀带.xhtml的链接后,就根据上面的servlet-name映射servlet找到对应处理类
</servlet-mapping>
<session-config> 配置session
<session-timeout> session的TTL
30
</session-timeout>
</session-config>
<welcome-file-list> 默认欢迎页,一次寻找服务器上的页面,有一下页面则显示
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>
</web-app>