Struts의 ActionForward에 대해 알아보자!!! 남은 글을 읽기 전에 뷰온버튼을 클릭해주시면 엉클퐝씨에겐 큰힘이 된답니다 *^_^* ** ActionForward Action이 모든 작업을 끝내고 view해줄 페이지의 경로를 지정하는 것 브라우져 요청 -> ActiondServlet -> [ActionForm] -> Action -> ActionForward의 path에 의해 지정된 페이지 이는 , ActionMapping되어 있는 XML에 정적서술해 놓은다. ** ActionForward 설정 - 가상의 포워드 이름과 웹 경로(path)로 구성. - Path는 GET 방식. - <forward name="logoff" path="/Logoff.do"/> <forward name="logon" path="/logon.jsp" redirect="true"/> ※ "redirect=false" : Forw.......
↧