日期:2014-05-18  浏览次数:20822 次

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>

正解