Skip to content
Advertisement

Spring AOP not getting invoked in spring boot 2.1.6 application

After following so many search results on google on this subject, my Aspect doesn’t work still on my spring boot application

I am using spring boot version 2.1.6, which seem to have already spring aop, aspectjweaver and aspectjrt (stand to be corrected). i created an annotation, aspect component and use my annotation on a target class with no success.

here is my annotation class

JavaScript

my aspect class

JavaScript

class ABC

JavaScript

configuration class

JavaScript

running the application and running set method on class ABC produce no effect whereas i expect to see Audit Works in the console

Advertisement

Answer

First, make sure your pom.xml contains all of these:

JavaScript

Second, annotate your configuration with @EnableAspectJAutoProxy, this will enable it.

Third, make sure you update your pointcut:

JavaScript

And then use it in your @Before.

JavaScript

Another important thing to notice is that you cannot execute a method pointcut of which is located on the same class. More info here.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement