私が使用したサーブレットで
response.sendRedirect("index.jsp?msg=Login failed");
? の後のメッセージ リダイレクトしながらメッセージを送信します。struts2 で同じことを行う方法
リダイレクトは struts.xml 経由なので
<result name="error">/index.jsp</result>
私はStrutsフレームワークの初心者です
私が使用したサーブレットで
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>