Tomcat web.xml 设置为 *.action 的 默认页面

1: 通常首页设置

在web.xml文件中一般咱们设置一个站点的首页多为网站第一根目录下的index.jsp或者index.htm之类,例如:
<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

2: *.action 的首页设置

首先设置web.xml默认首页为某action:
<welcome-file-list>
    <welcome-file>index.action</welcome-file>
</welcome-file-list>

关键的地方: 须要在目录下新建一个同名文件, 例如 index.action web

这样才能生效,之前一直设置不成功,都用 jsp 二次跳转的。
相关文章
相关标签/搜索