JSP 파일로 매개 변수를 전달하지 않을 것이다 : delete/confirm.jsp
리디렉션 때 어떤 이유스트럿 적합한 파일로 리디렉션 I은 (결과)에 따라 동작이
<!-- /web/addaccount -->
<action name="addaccount" class="com.x.y.z.WebCreateAccountAction">
<result name="INVALIDLOGIN">/delete/confirm.jsp?err=SIGNIN</result>
<result name="ERROR">/delete/error.html</result>
</action>
, 파라미터 err
는 없다 나는 왜 이런 일이 일어나고 있는지를 놓치고 있습니다. 이것은 Struts를 통해 JSP에 매개 변수를 전달하는 잘못된 방법입니까?
http://stackoverflow.com/questions/8769195/pass-parameter-from-jsp-to-struts-2-action –