我的文件名为.xhtml
且我的web.xml中没有重新定义javax.faces.DEFAULT_SUFFIX
,一切正常。
但我想在编写html5而不是xhtml时使用.html
扩展名。
这是我的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.html</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsf</welcome-file>
</welcome-file-list>
</web-app>
当我访问contextname/
时,我希望与contextname/index.jsf
位于同一页面,因为它是我的第一个欢迎文件列表,但使用了index.html文件,我看到了模板代码,正如我期望的那样,访问contextname/index.html
。
当我尝试访问contextname/index.jsf
时,有一个非常长的负载,大约10秒钟,页面结束为空。
再一次,没有参数,我的文件重命名为index.xhtml
,一切正常。