Struts2_ActionMethod_DMI_동적 방법 호출

동적 방법 호출: DMI
form 의 action 에서 동적 방법 으로 호출 합 니 다.action = "xxx! xxx. action", 첫 번 째 xxx 는 action 에서 호출 하 는 방법 으로 execute 와 같 습 니 다.다음 하 나 는 요청 한 action 입 니 다. 두 개 는 다 를 수 있 습 니 다.
Hello!login.action  이렇게 하면 많은 action 설정 을 줄 일 수 있 습 니 다.
다른 방식 은 struts. xml 파일 에 method 를 추가 하 는 방식 으로 호출 되 지만 많은 action 설정 이 필요 합 니 다.
다른 방식 은 마스크 를 사용 하 는 방식 으로 action 의 설정 파일 에 * xxxx 또는 xxxx * 를 사용 한 다음 method 에 method = "{1}" 을 쓰 고 form 의 action 에 xxxxxxx 를 쓰 면 action 류 의 방법 명 은 xxxxxxxxx 의 이름 에 대응 합 니 다.HelloLogin
hello 가 action 클래스 에 대응 하 는 방법, login 은 요청 한 action 입 니 다.

<?xml version="1.0" encoding="GB18030" ?>
<%@ page language="java" contentType="text/html; charset=GB18030"
    pageEncoding="GB18030"%>

<% String context = request.getContextPath(); %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030" />
<title>Insert title here</title>
</head>
<body>
Action            execute  <br />
          Action    method=         
    url       (      DMI)(  )<br />
	<a href="<%=context %>/user/userAdd">    </a>
	<br />
	<a href="<%=context %>/user/user!add">    </a>
	<br />
        action,       
	
</body>
</html>

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <constant name="struts.devMode" value="true" />
    <package name="user" extends="struts-default" namespace="/user">
        <action name="userAdd" class="com.hugui.struts2.user.action.UserAction" method="add">
            <result>/user_add_success.jsp</result>
        </action>
        
        <action name="user" class="com.hugui.struts2.user.action.UserAction">
            <result>/user_add_success.jsp</result>
        </action>
    </package>
</struts>


package com.hugui.struts2.user.action;

import com.opensymphony.xwork2.ActionSupport;

public class UserAction extends ActionSupport {
	public String add() {
		return SUCCESS;
	}
	
	
}


좋은 웹페이지 즐겨찾기