forward를 사용하면 parameter를 넘겨줄 수가 없었다.
찾다찾다 방법을 알아냈는데..
출처 : http://greenwebber.tistory.com/56
ActionForward forward = mapping.findForward("success");
ActionForward redirect = new ActionForward(forward.getName(), forward.getPath() + "?paramName=" + paramValue, true );
return redirect ;
더 많은 방법이 있지만 현재 사용하고 있는 Struts 버전이 1.1 이라서 이 방법이 최선이다.
ActionRedirect 는 1.2x 버전부터 되는 것 같았다.

댓글을 달아 주세요