当前位置: 代码迷 >> Java Web开发 >> JSP指向页有关问题
  详细解决方案

JSP指向页有关问题

热度:54   发布时间:2016-04-17 13:09:20.0
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>

正解
  相关解决方案