Struts2 處理多個商務邏輯的Action詳解

來源:互聯網
上載者:User

strut2 允許使用者自訂個業務控制器方法

預設的情況下是execute()
然而我們可以自訂方法,從而使得同一個action可以處理多個商務邏輯

例如

1.我們的action

 代碼如下 複製代碼

public class myAction extends Actionsupport
{
     @Override
     public String execute() throws Exception
    {
          //預設業務處理方法
    }

    @Override
    public String myExecute() throws Exception
   {
         //自訂的業務處理方法
   }
}

2.有兩種方法

第一種方法
我們的strut.xml的配置如下

 代碼如下 複製代碼

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
        <constant name="struts.custom.i18n.resource" value="mess" />
        <constant name="struts.i18n.encoding" value="GBK" />
       <package name="default" extends="struts-default">
               <action name="login" class="org.Rudiment.action.LoginAction">
                   <result name="input">/login.jsp</result>
                   <result name="error">/error.jsp</result>
                   <result name="success">/welcom.jsp</result>
              </action>
       </package>
</struts>   


當前台form的action="login" 的時候由 execute() 處理
當前台form的action="login!myExecute" 的時候由 myExecute() 處理


第二種方法

我們的strut.xml的配置如下

 代碼如下 複製代碼


<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
        <constant name="struts.custom.i18n.resource" value="mess" />
        <constant name="struts.i18n.encoding" value="GBK" />
       <package name="default" extends="struts-default">
               <action name="login" class="org.Rudiment.action.LoginAction">
                   <result name="input">/login.jsp</result>
                   <result name="error">/error.jsp</result>
                   <result name="success">/welcom.jsp</result>
               </action>
               <action name="tlogin" class="org.Rudiment.action.LoginAction" method="myExecute">
                   <result name="error">/index.jsp</result>
               </action>
       </package>
</struts>   


這種方法比上一種方法多配置了一個 action name="tlogin"
這個action 多了個method="myExecute"

當我們前台的form的action="login"的時候,業務處理將提交由execute()方法處理;
當我們前台的form的action="tlogin"的時候,業務處理將提交由myExecute()方法處理

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.