我正在使用<welcome-file>
. web.xml
我的欢迎文件位于faces/index.xhtml
. 除了欢迎文件的完整 URL 未显示在浏览器地址栏中之外,一切正常。当我输入
http://localhost:8080/hello1/
我想在浏览器地址栏中查看
http://localhost:8080/hello1/faces/index.xhtml
如何让 URL 出现?这是我的 web.xml 代码片段
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>