欢迎页面不会在浏览器中显示完整地址

时间:2012-09-27 04:06:02

标签: jsp web.xml

我的index.jsp位于MyApp / web / views。

在我的web.xml中,我已经设置了

<welcome-file-list>
    <welcome-file>web/views/index.jsp</welcome-file>
</welcome-file-list>

页面呈现正常,但在浏览器地址栏中显示:localhost:8080 / MyApp

我希望它显示完整的地址,如localhost:8080 / MyApp / web / views / index.jsp。 知道怎么做这个显示吗?

1 个答案:

答案 0 :(得分:0)

如果要更改地址栏,则必须告诉浏览器执行其他请求(重定向)。添加包含以下内容的<{1}}页面

MyApp/index.html

使用此功能,您将不需要<html> <head> <meta http-equiv="refresh" content="0; URL=web/views/index.jsp" /> </head> </html> 条目。