0

我正在使用<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>
4

0 回答 0