bboss aop 实践(5) 拦截器(Interceptor)

简介: bboss项目下载列表 在sourceforge访问地址为:https://sourceforge.net/project/showfiles.php?group_id=238653  bboss aop框架中,可以为业务组件配置1到多个拦截器(Interceptor)。

bboss项目下载列表 在sourceforge访问地址为:
https://sourceforge.net/project/showfiles.php?group_id=238653 

bboss aop框架中,可以为业务组件配置1到多个拦截器(Interceptor)。这些拦截器必须实现com.frameworkset.proxy.Interceptor接口。拦截器可以对执行方法的4个时间点进行拦截:

l         执行前

l         执行后

l         抛出异常时

l         方法finally

 

这些点分别对应com.frameworkset.proxy.Interceptor接口提供的4个方法:

    public void before(Method method,Object[] args) throws Throwable;

   

    public void after(Method method,Object[] args) throws Throwable;

  

    public void afterThrowing(Method method,Object[] args,Throwable throwable) throws Throwable;

   

    public void afterFinally(Method method,Object[] args) throws Throwable;

 

通过实现上述4个方法,bboss aop框架就可以方便地实施对业务组件方法的拦截功能。目前系统缺省提供了一个数据库事务管理拦截器:

com.chinacreator.spi.interceptor.TransactionInterceptor

用来实现bboss persistent框架的声明式事务管理功能,参考博客文章《bboss persistent事务管理介绍》。

 

下面举例说明拦截器的定义、配置和使用。

 

定义业务组件和拦截器

l         定义拦截器如下:

**

 * 方法拦截器

 *

 * <p>Title: Insterceptor.java</p>

 *

 * <p>Description: </p>

 *

 * <p>Copyright: Copyright (c) 2007</p>

 *

 * <p>bboss workgroup</p>

 * @Date Sep 5, 2008 4:43:47 PM

 * @author biaoping.yin

 * @version 1.0

 */

public class Insterceptor implements Interceptor {

 

    public void after(Method method, Object[] args) throws Throwable {

       System.out.println("Insterceptor.after(" + method.getName() + ", Object[] args)");

 

    }

 

    public void afterFinally(Method method, Object[] args) throws Throwable {

       System.out.println("Insterceptor.afterFinally(" + method.getName() + ", Object[] args)");

    }

 

    public void afterThrowing(Method method, Object[] args, Throwable throwable)

           throws Throwable {

       System.out.println("Insterceptor.afterThrowing(" + method.getName() + ", Object[] args, Throwable throwable)");

 

    }

 

    public void before(Method method, Object[] args) throws Throwable {

       System.out.println("Insterceptor.before(" + method.getName() + ", Object[] args)");

    }

}

 

l         定义的业务组件接口如下:

package com.chinacreator.spi.interceptor;

 

import com.chinacreator.spi.constructor.ConstructorInf;

 

public interface AI {

    public void testInterceptorsBeforeafterWithTX() throws Exception;

    public void testInterceptorsBeforeAfter() throws Exception;

    public void testInterceptorsBeforeThrowing() throws Exception;

    public void testInterceptorsBeforeThrowingWithTX() throws Exception;

    public void setConst(ConstructorInf inf)

    ;

 

}

 

l         业务组件实现如下:

 

public class A implements AI{

 

    public void testInterceptorsBeforeAfter() throws Exception {

//     System.out.println("testInterceptorsBeforeAfter()");

    }

 

    public void testInterceptorsBeforeThrowing() throws Exception {

//     System.out.println("testInterceptorsBeforeThrowing()");

       throw new Exception("testInterceptorsBeforeThrowing");

      

    }

 

    public void testInterceptorsBeforeThrowingWithTX() throws Exception {

      

//     System.out.println("testInterceptorsBeforeThrowingWithTX()");

       throw new Exception("testInterceptorsBeforeThrowingWithTX");

    }

 

    public void testInterceptorsBeforeafterWithTX() throws Exception {

//     System.out.println("testInterceptorsBeforeafterWithTX()");

    }

 

    public void setConst(ConstructorInf inf) {

       // TODO Auto-generated method stub

      

    }

}

 

配置业务组件和拦截器:

在包com.chinacreator.spi.interceptor下建立文件

simplemanager-interceptor.xml

 

目录
相关文章
|
5月前
|
监控 安全 Java
Java中的AOP编程实践与应用场景
Java中的AOP编程实践与应用场景
|
5月前
|
Java 测试技术 数据安全/隐私保护
Spring Boot中的AOP编程实践
Spring Boot中的AOP编程实践
|
7月前
|
XML 监控 Java
Spring AOP:解锁切面编程的威力与实践
Spring AOP:解锁切面编程的威力与实践
51 0
Spring AOP:解锁切面编程的威力与实践
|
7月前
|
Java Spring
代码优雅的转变:基于注解的AOP编程在Spring中的实践
代码优雅的转变:基于注解的AOP编程在Spring中的实践
38 0
|
7月前
|
Java Spring
spring boot aop 实践---记录日志
spring boot aop 实践---记录日志
50 0
|
7月前
|
安全 前端开发 Java
Java反射详解,学以致用,实战案例(AOP修改参数、Mybatis拦截器实现自动填充)3
Java反射详解,学以致用,实战案例(AOP修改参数、Mybatis拦截器实现自动填充)
121 0
|
7月前
|
Java 数据库连接 API
Java反射详解,学以致用,实战案例(AOP修改参数、Mybatis拦截器实现自动填充)2
Java反射详解,学以致用,实战案例(AOP修改参数、Mybatis拦截器实现自动填充)
89 0
|
7月前
|
存储 Java 数据库连接
Java反射详解,学以致用,实战案例(AOP修改参数、Mybatis拦截器实现自动填充)1
Java反射详解,学以致用,实战案例(AOP修改参数、Mybatis拦截器实现自动填充)
92 0
|
Java Spring
Spring AOP拦截器调用的实现
Spring AOP拦截器调用的实现
76 0
|
缓存 Java Spring
Spring AOP如何为目标方法创建拦截器链?
Spring AOP如何为目标方法创建拦截器链?
90 0