JavaWeb----学习(41)----struts2----struts2拦截器

本文详细介绍了Struts2框架中的拦截器机制,包括拦截器的作用、拦截器栈、工作流程,以及自定义拦截器的实现。Struts2的拦截器是其核心部分,用于实现如文件上传、数据验证等功能,并通过拦截器链实现AOP编程。文章还讲解了Interceptor接口的init、intercept和destroy方法,以及ActionInvocation接口在拦截器中的使用。
摘要由CSDN通过智能技术生成

1. 拦截器(Interceptor)是 Struts 2 的核心组成部分

2.  Struts2 很多功能都是构建在拦截器基础之上的,例如文件的上传和下载国际化数据类型转换数据校验等等。

3. Struts2 拦截器在访问某个 Action 方法之前之后实施拦截

4.  Struts2 拦截器是可插拔的, 拦截器是 AOP(面向切面编程) 的一种实现.

5.  拦截器栈(Interceptor Stack): 将拦截器按一定的顺序联结成一条链. 在访问被拦截的方法时, Struts2 拦截器链中的拦截器就

                                                    会按其之前定义的顺序被依次调用/

    拦截器工作流程:

       

 

6. Struts2 自带的拦截器

7.  Interceptor 接口

      每个拦截器都是实现了 com.opensymphony.xwork2.interceptor.Interceptor 接口的 Java :

/*** Eclipse Class Decompiler plugin, copyright (c) 2012 Chao Chen (cnfree2000@hotmail.com) ***/
package com.opensymphony.xwork2.interceptor;
import com.opensymphony.xwork2.ActionInvocation;
import java.io.Serializable;
public abstract interface Interceptor extends Serializable {
	public abstract void destroy();
	public abstract void init();
	public abstract String intercept(ActionInvocation paramActionInvocation)throws Exception;
}

    7.1  init: 该方法将在拦截器被创建后立即被调用, 它在拦截器的生命周期内只被调用一次.

                  可以在该方法中对相关资源进行必要的初始化

   7.2 interecept: 每拦截一个请求, 该方法就会被调用一次.

   7.3  destroy: 该方法将在拦截器被销毁之前被调用, 它在拦截器的生命周期内也只被调用一次.

   7.4  Struts 会依次调用为某个 Action 而注册的每一个拦截器的 interecept 方法.

   7.5  每次调用 interecept 方法时, Struts 会传递一个 ActionInvocation 接口的实例.

   7.6   ActionInvocation: 代表一个给定 Action 执行状态, 拦截器可以从该类的对象里获得

                                       与Action 关联的 Action 对象和 Result 对象. 在完成拦截器自

                                        己的任务之后, 拦截器将调用 ActionInvocation 对象的 invoke

                                      法前进到 Action 处理流程的下一个环节.

  7.7   AbstractInterceptor 类实现了 Interceptor 接口. 并为 init, destroy 提供了一个空白的实现

                                    可以继承该类去创建一个拦截器。

 

/*** Eclipse Class Decompiler plugin, copyright (c) 2012 Chao Chen (cnfree2000@hotmail.com) ***/
package com.opensymphony.xwork2.interceptor;
import com.opensymphony.xwork2.ActionInvocation;
public abstract class AbstractInterceptor implements Interceptor {
	public AbstractInterceptor() {
	}
	public void init() {
	}
	public void destroy() {
	}
	public abstract String intercept(ActionInvocation paramActionInvocation)throws Exception;
}

 

 

 

 

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值