1 回答
TA贡献1869条经验 获得超4个赞
.jsf
FacesServlet
web.xml
.
<servlet-mapping> <servlet-name>facesServlet</servlet-name> <url-pattern>*.jsf</url-pattern></servlet-mapping>
.xhtml
Webapp/WebContent/page.xhtml
.
.jsf
http://localhost:8080/webapp/page.jsf
FacesServlet
page.xhtml
FacesServlet
*.faces
/faces/*
FacesServlet
*.xyz
.xhtml
<context-param>
web.xml
:
<context-param> <param-name>javax.faces.DEFAULT_SUFFIX</param-name> <param-value>.xml</param-value></context-param>
FacesServlet
page.xml
page.xhtml
.
*.xhtml
http://localhost:8080/webapp/page.xhtml
.
<servlet-mapping> <servlet-name>facesServlet</servlet-name> <url-pattern>*.xhtml</url-pattern></servlet-mapping>
.jsf
.xhtml
*.jsf
*.xhtml
FacesServlet
*.xhtml
/faces/*
, *.faces
*.jsf
另见:
添加回答
举报