SSH - Struts 2 탄: 하나의 Form 제출 2 개의 Action
7941 단어 struts
1. 여러 submit 폼 페이지 또는 jsp 페이지 에서 URL 로 제출
<s:form action="UserAction">
<!--
s:submit method struts.xml action method (method )。
s:submit action method, struts.xml action method。
, struts.xml action actionName(action )。
: Action , action , action method ( s:submit )。
-->
<s:submit value=" List " method="list" />
<s:submit value=" Add " method="add" />
<!-- URL -->
<!-- , :http://localhost:8080/contextPath/actionName!method.action -->
http://localhost:9090/TCTS/user/UserAction!list.action
http://localhost:9090/TCTS/user/UserAction!add.action
2. Form 폼 에 대응 하 는 Action 클래스
1 public class UserAction extends ActionSupport {
2 public String list() {
3 System.out.println("================ list() ================");
4 return "list";
5 }
6
7 public String add() {
8 System.out.println("================ add() ================");
9 return "add";
10 }
11
12 public String queryAll() {
13 req = ServletActionContext.getRequest();
14 uList = userDAO.queryAll();
15 req.getSession().setAttribute("uList", uList);
16 return SUCCESS;
17 }
18 }
3、Struts.xml
1 <struts>
2 <package name="struts" extends="struts-default">
3
4 <action name="UserAction" class="userAction">
5 <result name="list" type="redirectAction">UserAction_queryAll</result>
6 <result name="add">/user/user_insert.jsp</result>
7 </action>
8
9 <action name="UserAction_queryAll" class="userAction" method="queryAll">
10 <result>/user/user_list.jsp</result>
11 </action>
12
13 </package>
14 </struts>
상기 코드 에 따라 성공 사례 가 나 오지 않 았 습 니 다.각종 대 신의 지 도 를 구하 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
java의 Struts2 파일 업로드 및 다운로드 예파일 업로드 Struts 응용 프로그램에서 File Upload 차단기와 Jakarta Commons File Upload 구성 요소로 파일을 업로드할 수 있습니다. Jsp 페이지의 파일 업로드 폼에 파일 탭을 사용...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.