IntelliJ IDEA + AspectJ
问题 I am trying to use AspectJ in sample project in IntelliJ IDEA. I have an experience with Spring AOP, but this is first time I am using AspectJ, and cannot make it work. I am trying to do as described here: https://www.jetbrains.com/help/idea/2017.1/aspectj.html My build.gradle: apply plugin: 'java' repositories { mavenCentral() } dependencies { compile "org.projectlombok:lombok:+" compile "org.aspectj:aspectjrt:+" compile "org.aspectj:aspectjweaver:+" compile "org.aspectj:aspectjtools:+" }