这是默认实现。
<welcome-file-list>
<welcome-file>Index.jsp</welcome-file>
</welcome-file-list>
我想改变如下
<welcome-file-list>
<welcome-file>login.action</welcome-file>
</welcome-file-list>
<action name="login" class="com.mm.authentication.Login">
<result name="success">/Index.jsp</result>
以上实施不起作用。
如果有人知道怎么做,请告诉我。
答案 0 :(得分:0)
欢迎文件只是一个文件。您必须将其重命名为login.jsp
。但是使用以下内容创建一个新文件index.jsp
<% response.sendRedirect(request.getContextPath()+"login.action"); %>
动作配置
<action name="login" class="com.mm.authentication.Login">
<result name="success">/login.jsp</result>