0

在我使用的 servlet 中

  response.sendRedirect("index.jsp?msg=Login failed");

后发信息?在重定向时发送消息。如何用struts2做同样的事情

由于重定向是通过 struts.xml

 <result name="error">/index.jsp</result>

我只是struts框架的初学者

4

2 回答 2

0

在您的动作类中扩展ActionSupport

addActionError("Login failed");

在你的 index.jsp 中:

<s:actionerror/>
于 2012-10-18T10:23:59.133 回答
0
<result name="error" type="redirect" >
  <param name="location">index.jsp?msg=${actionMessage}</param>
  <param name="parse">true</param>
  <param name="encode">true</param>
</result>
于 2012-10-18T10:26:48.087 回答