Closed 188 closed 2 years ago
Hello. This is not a forum to ask usage questions about AspectJ, but a bug tracker. So I am closing this issue. Better ask on Stack Overflow or the AspectJ users mailing list. But please provide an MCVE, i.e. a complete minimal sample reproducing the problem, and ask clear questions. I have no idea what you actually want to know. Like this I would be unable to help, no matter on which platform.
Configured in a project
@Around("execution( (..)) && (cflow(execution( com.xxx.xx.service..*(..))))"")
The project starts with fetching all classes or methods that require AOP, all classes and methods under the Service package
For example: com.xxx.xx.service.impl.UserService.getUser com.xxx.xx.service.impl.UserService.listUser ......