在我使用的 servlet 中
response.sendRedirect("index.jsp?msg=Login failed");
后发信息?在重定向时发送消息。如何用struts2做同样的事情
由于重定向是通过 struts.xml
<result name="error">/index.jsp</result>
我只是struts框架的初学者
在我使用的 servlet 中
response.sendRedirect("index.jsp?msg=Login failed");
后发信息?在重定向时发送消息。如何用struts2做同样的事情
由于重定向是通过 struts.xml
<result name="error">/index.jsp</result>
我只是struts框架的初学者
在您的动作类中扩展ActionSupport
:
addActionError("Login failed");
在你的 index.jsp 中:
<s:actionerror/>
<result name="error" type="redirect" >
<param name="location">index.jsp?msg=${actionMessage}</param>
<param name="parse">true</param>
<param name="encode">true</param>
</result>