码迷,mamicode.com
首页 > 编程语言 > 详细

spring_aop注解

时间:2018-06-01 10:44:06      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:pre   out   owa   one   value   for   exec   lang   throw   

前置通知注解

@Component("before")    //声明是spring容器的bean组件
@Aspect                         //声明当前组件是切面组件
public class Before{
      //表示doBefore函数是一个前置通知 + 该前置通知的切入点程序
      @org.aspectj.lang.annotation.Before("execution(* com..*.*(..)")
         public void doBefore(JoinPoint jp){
    }  
}

后置通知注解

@Component
@Aspect
public class After{
  @AfterReturning(pointcut="execution(* com..*.*(..))",returning="ret")
public void doAfter(JoinPoint pjp,Object ret){
  System.out,print("目标程序与aop程序执行后将最后执行,返回参数为:" + ret);  
}  
}

异常通知注解

@Component
@Aspect
public class ThrowException{
    @AfterThrowing(pointcut = "execution(* com..*.*(..) )",throwing="e")
    public void doThrow(JoinPoint jp,Throwable e){
}
}

最终通知注解方法

@Component
@Aspect
public class AfterFinally{
  @After(value="execution(* com..*.*(..))")  
  public void afterFinally(JoinPoint jp){
    }
}

环绕通知注解方法

@Component
@Aspect
public class Around{
@org.aspectj.lang.annotation.Around("execution(* com..*.*(..))")
   public String around(ProceedingJoinPoint pjp){
    }
}

 

spring_aop注解

标签:pre   out   owa   one   value   for   exec   lang   throw   

原文地址:https://www.cnblogs.com/fionalde/p/9119984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!