读书人

JSP指向页有关问题

发布时间: 2012-01-24 23:11:54 作者: rapoo

JSP指向页问题
各位高手!我现在打http://localhost/test是直接进入到index.jsp,如果我想要打http://localhost/test之后直接进入welcome.html我应该怎么做啊???

[解决办法]
设置欢迎文件
web.xml下这样配置:
<welcome-file-list>
<welcome-file> welcome.html </welcome-file>
</welcome-file-list>

[解决办法]
也可以在 jsp 里跳转
[解决办法]
设置欢迎文件
web.xml下这样配置:
<welcome-file-list>
<welcome-file> welcome.html </welcome-file>
</welcome-file-list>

正解

读书人网 >Java Web开发

热点推荐