springBoot中如何使用AOP
时间: 2023-06-04 07:02:34 浏览: 37
springBoot - 使用Aop统计方法时间
可以使用@Aspect注解和@Pointcut注解来定义切面和切入点,使用@Before、@After、@Around等注解来定义具体的通知行为。同时,还需要在应用程序的启动类上添加@EnableAspectJAutoProxy注解来启用AOP功能。具体实现可以参考Spring官方文档或者相关的教程。
阅读全文
springBoot - 使用Aop统计方法时间