扬帆☆启航

1、企业网站建设、推广、维护 2、中小型企业、店铺的业务管理系统(人事、工资、销售、库存管理、会员管理、统计查询、发票管理、客户关系管理,售后服务管理,物资管理等) 3、中小型企业信息化解决方案

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

使用拦截器注解

   Struts2com.opensymphony.xwork2.interceptor.annotations包中定义了3个拦截器注解类型,让你可以不用编写拦截器类,直接通过注解的方式指定action执行之前和之后需要调用的方法。

   Struts2提供的3个拦截器注解类型都只能应用到方法级别。如下:

  Before

   标注一个action方法,该方法将在action的主要方法(execute方法)调用之前调用。如果标注的方法有返回值,并且不为空,那么它的返回值将作为Action的结果代码。

   After

   标注一个action方法,该方法将在action的主要方法以及result执行之后调用,如果标注的方法有返回值,那么这个返回值将被忽略。

   BeforeResult

   标注一个action方法,该方法将在action的主要方法调用之后,在result执行之前调用,如果标注的方法有返回值,那么这个返回值将被忽略。

                 Before After BeforeResult注解的同名参数

参数

类型

是否必要

默认值

描述

priority

int

10

指定方法执行的优先级别

同一个注解可以用来标注多个方法,方法执行的先后顺序可以通过priority参数来指定,优先级越高,方法越先执行。在相同的优先级的情况下,方法执行的先后顺序无法保证。不过有继承关系的action类,在基类上标注的方法将先于在派生类上标注的方法执行。

要使用拦截器注解,需要配置

<interceptors>

           <!-- 配置注解拦截器 -->

           <interceptor name="annotationInterceptor" class="com.opensymphony.xwork2.interceptor.annotations. AnnotationWorkflowInterceptor"/>  

           <interceptor-stack name="annotatedStack">

           <interceptor-ref name="annotationInterceptor"/>

           <interceptor-ref name="defaultStack"/>

           </interceptor-stack>

       </interceptors>

我们看一个例子:

package com.zhaosoft.action;

 

import com.opensymphony.xwork2.Action;

import com.opensymphony.xwork2.interceptor.annotations.After;

import com.opensymphony.xwork2.interceptor.annotations.Before;

import com.opensymphony.xwork2.interceptor.annotations.BeforeResult;

 

public class AnnotationAction implements Action {

 

 

    @Before

    public void before(){

      

       System.out.println("before");

    }

   

    @After

    public void after(){

       System.out.println("after");

      

    }

   

    @BeforeResult

    public void beforeResult(){

       System.out.println("beforeResult");

      

    }

    public String execute() throws Exception {

       // TODO Auto-generated method stub

       return null;

    }

}

这个例子非常简单,只是演示了被拦截器注解标注的方法的执行顺序,在struts.xml中配置action

<action name="annotation" class="com.zhaosoft.action.AnnotationAction">

       <result>/index.jsp</result>

       <interceptor-ref name="annotatedStack"/>

       </action>

访问annotation.action控制台输出如下:

before

2008-11-21 6:42:00 com.opensymphony.xwork2.validator.ActionValidatorManagerFactory <clinit>

信息: Detected AnnotationActionValidatorManager, initializing it...

beforeResult

after

posted on 2008-11-21 07:49  赵晓雷  阅读(6234)  评论(0编辑  收藏  举报