首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

JSP指向页有关问题

2012-01-24 
JSP指向页问题各位高手!我现在打http://localhost/test是直接进入到index.jsp,如果我想要打http://localho

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>

正解

热点排行