在SpringBoot中配置aop

时间:2023-11-10 13:44:20

前言

aop作为spring的一个强大的功能经常被使用,aop的应用场景有很多,但是实际的应用还是需要根据实际的业务来进行实现。这里就以打印日志作为例子,在SpringBoot中配置aop
已经加入我的github模版中:https://github.com/LinkinStars/springBootTemplate

配置

经过那么长时间的过程,我们也慢慢体会到,在spingboot项目中添加元素是非常方便的,aop也是。

首先配置依赖
compile('org.springframework.boot:spring-boot-starter-aop')

然后就是添加aop了

 @Component
@Aspect
public class DemoAop { @Pointcut("execution(* com.linkinstars.springBootTemplate.controller.*.*(..))")
private void logPointcut(){} @Before("logPointcut()")
public void before(JoinPoint joinPoint){
LogUtil.printLog("AOP的before方法执行");
}
}

最后在我们访问任何controller的时候就会打印相应的日志信息


具体切点的配置,以及切入的方法等,都和原来是一样的这里就不在赘述

详细配置说明参数参考:https://www.cnblogs.com/lic309/p/4079194.html