springboot切面编程范例
Posted 滴水穿石
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot切面编程范例相关的知识,希望对你有一定的参考价值。
相较与古老的ssm项目,springboot项目的切面编程几乎不用配置。开箱即用。
依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
注解
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documentedpublic @interface SysLogger {
String action() default "";
String content() default "";
}
切面类
@Aspect
@Component
public class MyNewAspect {
//整个包下的所有
@Pointcut("execution(* com.***.***.controller.*.*(..))")
public void point(){}
//基于注解的切点
//@annotation(com.***.***.annotation.SysLogger)
@Pointcut("@annotation(com.***.***.annotation.SysLogger)")
public void point0(){}
// 期望在某个方法执行前做一些处理,叫做前置通知
@Before(value="point()")
public void begin(JoinPoint joinPoint){
String name =joinPoint.getSignature().getName();
System.out.println(name + "方法开始执行...");
// 添加处理代码
// ...
// 以上是处理代码
}
// 期望在某个方法执行后做一些处理,叫做后置最终通知
@After(value = "point()")
public void end(JoinPoint joinPoint){
String name = joinPoint.getSignature().getName();
System.out.println(name + "方法执行结束...");
// 添加处理代码
// ...
// 以上是处理代码
}
// 期望在某个方法返回时做一些处理,叫做后置返回通知
@AfterReturning(value = "point()" , returning = "result")
public void afterReturning(JoinPoint joinPoint, Object result){
String name = joinPoint.getSignature().getName();
System.out.println(name + "方法返回值为:" + result);
// 添加处理代码
// ...
// 以上是处理代码
}
// 期望在某个方法抛出异常时做一些处理,叫做后置异常通知
@AfterThrowing(value = "point()" , throwing = "e")
public void afterThrowing(JoinPoint joinPoint, Exception e){
String name = joinPoint.getSignature().getName();
System.out.println(name + "方法抛出异常:" + e.getClass().getName());
// 添加处理代码
// ...
// 以上是处理代码
}
// 期望在某个方法执行时做一些处理,叫做环绕通知
// 这个通知功能强大且比较灵活。
@Around("point0()")
public Object around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable{
// 添加处理代码
// ...
// 以上是处理代码
return proceedingJoinPoint.proceed();
}
}
以上是关于springboot切面编程范例的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot.07.SpringBoot切面编程之AOP
SpringBoot.07.SpringBoot切面编程之AOP