`
CoderDream
  • 浏览: 477288 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

【张冰Struts2学习笔记】0201_Action接口与ActionSupport类

阅读更多
 

Action 接口与ActionSupport

1.      Action 接口

所在包名:

com.opensymphony.xwork2

描述:

public interface Action

All actions may implement this interface, which exposes the execute() method. However, as of XWork 1.1, this is not required and is only here to assist users. You are free to create POJOs that honor the same contract defined by this interface without actually implementing the interface.

简单翻译:

所有的 Action 都可以实现这个接口,该接口暴露了一个 execute() 方法。

然而,在 XWork 1.1 中,这些(实现接口)不是必须的,它只是用来协助用户的。你可以自由的创建一个 POJO 来替代实现这个接口,只需要实现一个 execute() 方法,而不需要真正的实现这个接口。 

 

代码清单 1 Action.java

 

public interface Action {

    public static final String SUCCESS = "success" ;

    public static final String NONE = "none" ;

    public static final String ERROR = "error" ;

    public static final String INPUT = "input" ;

     public static final String LOGIN = "login" ;

     public String execute() throws Exception;

}
 

我们可以看到,Action 接口非常简单,除了定义了5 个常量以外,还声明了一个方法。要实现这个接口,只需要实现这个方法即可。

代码清单 2 LoginAction.java

 

package com.coderdream.action;
 
import com.opensymphony.xwork2.Action;
 
public class LoginAction implements Action {
      private String username ;
      private String password ;
 
      public String getUsername() {
           return username ;
      }
 
      public void setUsername(String username) {
           this .username = username;
      }
 
      public String getPassword() {
           return password ;
      }
 
      public void setPassword(String password) {
           this .password = password;
      }
 
      public String execute() {
           if ("aaa" .equalsIgnoreCase(username .trim())
                      && "123" .equalsIgnoreCase(password .trim())) {
                 return SUCCESS ;
           }
           else {
                 return INPUT ;
           }
      }
 
} 
 

Action 中常量的简单释义:

 

  英文注释 中文释义
static String ERROR  The action execution was a failure. Show an error view, possibly asking the user to retry entering data. Action执行失败。显示一个错误的视图(页面),这个页面可以要求用户再次输入相关数据。
static String INPUT  The action execution require more input in order to succeed. This result is typically used if a form handling action has been executed so as to provide defaults for a form. The form associated with the handler should be shown to the end user.
This result is also used if the given input params are invalid, meaning the user should try providing input again. 
Action的执行成功需要更多的输入。这个结果是一个典型的结果,它表明如果一个表单通过提供默认的表单来操作一个Action。这个表单会显示给最终用户。
这个结果也用于用户输入无效,意味着用户需要再次输入。
static String LOGIN  The action could not execute, since the user most was not logged in. The login view should be shown.  Action不能执行,因为用户没有登录。已登录的画面会被关闭。
static String NONE  The action execution was successful but do not show a view. This is useful for actions that are handling the view in another fashion like redirect.  Action执行成功,但是不会显示一个视图。通常产生这种情况的原因是被其他视图重定向了。
static String SUCCESS  The action execution was successful. Show result view to the end user. Action执行成功。显示结果视图(页面)给用户。

 

struts.xmlresult 就可以直接使用Action 接口中的常量了:

代码清单 3 struts.xml

<?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 >
      <package name = "loginTest" extends = "struts-default" >
           <action name = "login" class = "com.coderdream.action.LoginAction" >
                 <result name = "success" >/loginSuc.jsp
            </result >
                 <result name = "input" >/loginFail.jsp
            </result >
           </action >
      </package >
</struts > 

2.      ActionSupport

public class ActionSupport

extends Object

implements Action , Validateable , ValidationAware , TextProvider , LocaleProvider , Serializable

Provides a default implementation for the most common actions. 
See the documentation for all the interfaces this class implements for more detailed information.

为最常用的 Action 的提供一个默认的实现。 
  

下面是ActionSupport 类的代码片段,从中我们可以看到该类提供了execute() 方法的空实现,直接返回success

代码清单 4 ActionSupport.java

 

public class ActionSupport implements Action , Validateable , ValidationAware , TextProvider , LocaleProvider , Serializable {
 
    public String input() throws Exception {
        return INPUT ;
    }
   
    public String doDefault() throws Exception {
        return SUCCESS ;
    }
 
    public String execute() throws Exception {
        return SUCCESS ;
    }
 
    public void validate() {
    }
 
    public Object clone() throws CloneNotSupportedException {
        return super .clone();
    }
    public void pause(String result) {
    }
 
} 

 

LoginAction 继承了com.opensymphony.xwork2.ActionSupport 类。 LoginAction 覆写了父类(ActionSupport )中的execute() 方法,当然也可以直接使用该类的默认实现,该默认实现返回SUCCESS

代码清单 5 LoginAction.java

 

package com.coderdream.action;
 
import com.opensymphony.xwork2.ActionSupport;
 
public class LoginAction extends ActionSupport {
 
      private static final long serialVersionUID = -8047473058927169093L;
      private String username ;
      private String password ;
 
      public String getUsername() {
           return username ;
      }
 
      public void setUsername(String username) {
           this .username = username;
      }
 
      public String getPassword() {
           return password ;
      }
 
      public void setPassword(String password) {
           this .password = password;
      }
 
      public String execute() {
           if ("aaa" .equalsIgnoreCase(username .trim())
                      && "123" .equalsIgnoreCase(password .trim())) {
                 return SUCCESS ;
           } else {
                 return INPUT ;
           }
      }
 
} 

3.      三种方式小结

1、 Login1Action POJO ,包含一个execute() 方法,返回值为String

代码清单 1 Login1Action.java

 

public String execute() {
      if ("aaa".equalsIgnoreCase(username.trim())
                 && "123".equalsIgnoreCase(password.trim())) {
           return "success";
      } else {
           return "failure";
      }
}
 

返回的多个值对应与struts.xml 中配置的返回结果集对应:

代码清单 2 struts.xml 片段

<action name="login1" class="com.coderdream.action.Login1Action">
      <result name="success">/login1Suc.jsp</result>
      <result name="failure">/login1Fail.jsp</result>
</action>

 

2 Login2Action 实现了接口com.opensymphony.xwork2.Action

       Login2Actionstruts.xml 中可直接使用Action 中定义的常量;

代码清单 3 Action.java

 

static String ERROR
      The action execution was a failure.
      返回错误
static String INPUT
      The action execution require more input in order to succeed.
      返回一个输入页面
static String LOGIN
      The action could not execute, since the user most was not logged in. 、
      返回登录页面
static String NONE
      The action execution was successful but do not show a view.
      返回空(例如在上传下载时)
static String SUCCESS
      The action execution was successful.
      返回成功页面
 

返回值为Action 中定义的静态常量:

代码清单 4 Login2Action.java

 

public String execute() {
      if ("aaa".equalsIgnoreCase(username.trim())
                 && "123".equalsIgnoreCase(password.trim())) {
           return SUCCESS;
      }
      else {
           return INPUT;
      }
}
 

struts.xml 中配置的返回结果集为静态常量对应的字符串:

代码清单 5 struts.xml 片段

<action name="login2" class="com.coderdream.action.Login2Action">
      <result name="success">/login2Suc.jsp</result>
      <result name="input">/login2Fail.jsp</result>
</action>
 

3 Login3Action 继承自

       com.opensymphony.xwork2.ActionSupport

       该类实现了接口com.opensymphony.xwork2.Action 接口;

       (该类另外还实现了Validateable , ValidationAware, TextProvider,

       LocaleProvider, Serializable 接口)

       Login3Action 的代码和struts.xml 中配置与Login2Action 一致;

   

4com.opensymphony.xwork2.ActionSupport 类有execute() 方法的实现,直接返回SUCCESS ,也就是说任何继承自ActionSupport 的类可以不覆写execute() 方法,永远返回成功。

 

4.      源代码

附件。

 

 

我的联系方式: 85337464

我的博客: http://coderdream.iteye.com

 

1
0
分享到:
评论
1 楼 orclight 2011-12-07  
学习了!

相关推荐

    【张冰Struts2学习笔记】0202_Struts2的三种接收用户输入的方法

    在"【张冰Struts2学习笔记】0202_Struts2的三种接收用户输入的方法"中,我们主要探讨的是如何在Struts2中有效地获取并处理用户提交的数据。以下是对这三种方法的详细解析: ### 1. 使用Action属性 Struts2的核心是...

    【张冰Struts2学习笔记】0102_第一个Struts2实例

    【张冰Struts2学习笔记】0102_第一个Struts2实例 在Java Web开发领域,Struts2框架是十分重要的MVC(模型-视图-控制器)架构之一,它极大地简化了Web应用程序的开发流程。这篇学习笔记将带你入门Struts2,通过创建...

    【张冰Struts2学习笔记】0103_Path与绝对路径

    标题中的“【张冰Struts2学习笔记】0103_Path与绝对路径”表明了这篇笔记主要讨论的是Struts2框架中关于Path和绝对路径的概念及其应用。Struts2是一个流行的Java Web开发框架,它提供了强大的MVC(模型-视图-控制器...

    Struts2_张冰_视频教程课件_PPT

    这个“Struts2_张冰_视频教程课件_PPT”资源是专门针对Struts2框架的学习资料,由知名讲师张冰制作,旨在帮助学习者深入理解并掌握Struts2的核心概念和技术。 首先,我们来探讨一下Struts2框架的基础知识。Struts2...

    struts2 PPT 张冰

    `标签库`部分会介绍Struts2提供的丰富UI标签,如`s:form`、`s:textfield`、`s:submit`等,这些标签简化了视图层的开发,与Action和模型数据紧密集成。 在`详细的配置文件描述`中,可能会讲解struts.xml的结构和重要...

    张冰主讲的struts2 ppt

    Struts2是一个强大的Java ...通过张冰主讲的Struts2 PPT,开发者不仅能学习到上述基础知识,还能了解到实际项目中的最佳实践和常见问题解决方案。这份PPT对于想要深入了解和掌握Struts2框架的人来说是一份宝贵的资源。

    张冰struts原代码(全部1-6)之五

    2. **Action类和Form Beans**:Action类是Struts的核心组件,接收来自JSP页面的表单数据,处理请求,并通过Service层调用DAO层完成业务操作。Form Beans则用于在Action和JSP之间传递数据,它们是视图层和控制器之间...

    张冰struts原代码(全部1-6)之二

    张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)

    张冰struts原代码(全部1-6)之一

    张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)

    张冰主讲的Struts2的PPT

    首先,在Action类的设计上,Struts1要求Action类继承自特定的抽象基类,而Struts2则允许Action类实现Action接口,甚至可以是任何带有execute方法的POJO(Plain Old Java Object),这大大提高了灵活性和可定制性。...

    张冰struts原代码(全部1-6)之六

    2. **Action与ActionForm**:Action是处理业务逻辑的类,它接收来自控制器的请求,处理后返回结果。ActionForm则用于封装HTTP请求中的数据,方便在Action中进行处理。 3. **Tiles与视图管理**:可能在"张冰struts原...

    张冰struts原代码(全部1-6)之四

    张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)张冰struts原代码(全部1-6)

    张冰struts原代码(全部1-6)之三

    这个“张冰struts原代码(全部1-6)”系列可能是一个教学资源,包含了六个部分,旨在帮助学习者深入理解Struts框架的工作原理和实现细节。以下是基于提供的文件名推测的各个部分可能涉及的关键知识点: 1. **test-...

    Struts2 ppt

    Action类通过实现`com.opensymphony.xwork2.Action`接口或继承`ActionSupport`类来定义其行为。 3. **配置文件**:Struts2的配置主要在struts.xml文件中进行,用于定义Action的映射、结果类型、拦截器等。通过XML...

    struts2.ppt完整包

    2. **Action类与结果映射**:Action类是处理用户请求的核心,它执行特定业务逻辑并返回一个结果。结果映射定义了Action执行后的跳转路径,可以是另一个Action或一个JSP页面。 3. **配置文件**:Struts2的配置文件...

    张冰老师的SSH2整合心得

    6. **应用实例**:以用户注册为例,我们需要创建Action类(对应Struts2),持久化类(对应Hibernate),以及服务接口和服务实现类(对应Spring)。Action类负责接收用户的请求,调用服务层处理业务逻辑,而持久化类...

    传智播客Struts2的PPT

    传智播客Struts2的PPT,是传智播客黎活明老师的东西,和视频是配套的东西还不错

    C++面向对象程序设计 张冰 课件、源代码

    张冰教授的课件和源代码很可能是为了辅助学习这些概念而设计的,通过实际编程例子和练习,帮助学生加深理解和应用这些知识。源代码可能涵盖了各种面向对象的设计模式,如工厂模式、单例模式、观察者模式等,这些都是...

    C面向对象程序设计张冰PPT学习教案.pptx

    在《C面向对象程序设计张冰PPT学习教案》中,作者通过具体的例子介绍了面向对象编程的基本思想及其与传统的结构化程序设计的区别。面向对象编程是一种软件开发方法,它强调的是数据与操作数据的方法的结合,即将数据...

Global site tag (gtag.js) - Google Analytics