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>
正解