利用Annotation方式实现AOP编程

@Service
@Aspect
@Order(value=3)
public class OperateInterceptor{
    
    protected Log log = LogFactory.getLog(getClass());

  

  1. /** 
  2.      * 定义切入点 
  3.      * 第一个*表示方法的返回值,这里使用通配符,只有返回值符合条件的才拦截 
  4.      * 第一个..表示com.orient.crm.service包及其子包 
  5.      * 倒数第二个*表示包下的所有Java类 
  6.      * .update表示update方法(所有方法用*表示)
  7.      * (..)表示方法的参数可以任意多个 
  8.      */

    //当数据更新后执行   

    @After("execution(* com.orient.crm.service..*.update(..))")
    public void updatePointcut(JoinPoint joinPoint) throws UnsupportedEncodingException {
        
        
       //业务代码

    }


    //当数据保存后执行   
    @After("execution(* com.orient.crm.*.service..*.save(..))")
    public void savePointcut(JoinPoint joinPoint) throws UnsupportedEncodingException {
        
        
        //业务代码
    }


 //当数据删除后执行   

    @After("execution(* com.orient.crm.*.service..*.delete(..))")
    public void deletePointcut(JoinPoint joinPoint) {
        log.info("log delete info begin...");
        
       //业务代码

}


说明

1.pointcut语法

execution ——for matching method execution join points

within —— 指定连接点所在的Java类型。

this ——bean reference (Spring AOP proxy) is an instance of the given type

  target —— the target object (application object being proxied) is an instance of the given type

args —— 指定传入到连接点的参数

@target —— the class of the executing object has an annotation of the given type

@args —— the runtime type of the actual arguments passed have annotations of the given type(s)

@within —— limits matching to join points within types that have the given annotation

@annotation —— the subject of the join point (method being executed in Spring AOP) has the given annotation

组合pointcut表达式

可以使用 && 、|| 、! 组合pointcut表达式。

execution格式

execution(

可见性(可选) —— 使用public、protected、private指定可见性。也可以为*,表示任意可见性

返回值类型(必须) —— 指定返回值类型

声明类型(可选)——  java

方法名(参数模式)(必须) —— 方法名称,和方法接收的参数 

异常模式(可选) —— 指定方法签名中是否存在异常类型

)

在pointcut表达式中可以使用 * 、.. 、 +等通配符。

* :表示若干字符(排除 . 在外)

.. :表示若干字符(包括 . 在内)

+ :表示子类 ,比如Info+ 表示Info类及其子类

2.定义Advice
advice在关联的pointcut表达式的方法运行前(before)、运行后(after)、运行前后(around)执行。
Before Advice:
使用@Before定义Before Advice。
参数:value :绑定到Advice的Pointcut表达式
After returning advice
在匹配的方法执行之后运行该Adivce。使用@AfterReturning进行注释。
参数:value、pointcut:绑定到Advice的Pointcut表达式
returning:String类型,将方法的返回值绑定到Advice的参数名上。
After throwing advice
在pointcut匹配的方法抛出异常后,执行pointcut关联的Advice。使用@AfterThrowing进行注解。
参数:value、pointcut:绑定到Advice的Pointcut表达式
throwing:String类型,将抛出的异常绑定到Advice的参数上。
After advice
使用After进行注解。
参数:value :绑定到Advice的Pointcut表达式
3.参数
  使用JoinPoint
可以在Advice中的第一个参数中定义org.aspectj.lang.JoinPoint类型的参数(在around Advice中使用ProceedingJoinPoint类型的参数)
java.lang.Object[] getArgs()   —— returns the method arguments
Signature getSignature()   ——   returns a description of the method that is being advised
java.lang.Object getTarget()   —— returns the target object 
java.lang.Object getThis()   —— returns the proxy object
pointcut中使用args传递参数
参考:http://www.iteye.com/topic/480860

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值