2022
08-11
08-11
SpringBoot使用AOP,内部方法失效的解决方案
目录SpringBoot使用AOP,内部方法失效AOP切面现在有两个方法写一个简单的动态代理的例子SpringBoot使用AOP,内部方法失效最近在使用AOP的时候,发现一个问题,普通的方法AOP就能够有用,而内部调用的方法AOP就会失效,下面重现下问题AOP切面@Aspect@ComponentpublicclassAuthorityAspect{@Pointcut("execution(*authority.service.AuthorityService.getExecutableSql(..))")privatevoidpointCut(){}@Around(val...
继续阅读 >