使用<welcome-file> </welcome-file>时,在浏览器地址栏中显示完整的URL

时间:2013-08-30 13:41:43

标签: url jsf-2 welcome-file

我在<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>

0 个答案:

没有答案