我在<welcome-file>
中使用web.xml
。我的欢迎档案是faces/index.xhtml
。一切正常,但欢迎文件的完整URL未显示在浏览器地址栏中。当我输入
http://localhost:8080/hello1/
我想在浏览器地址栏中看到
http://localhost:8080/hello1/faces/index.xhtml
如何显示网址?这是我的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>