My setup is fairly simple: I have a web front-end, back-end is spring-wired.
I am using AOP to add a layer of security on my rpc services.
It\'s all good, ex
I run into this problem in my first attempt at AOP, following a spring tutorial.
My problem was not having spring-aop.jar in my classpath. The tutorial listed all other dependencies I had to add, namely:
aspectjrt.jaraspectjweaver.jaraspectj.jaraopalliance.jarBut the one was missing. Just one more problem that can contribute to that symptom in the original question.
I am using Eclipse (neon), Java SE 8, beans 3.0, spring AOP 3.0, Spring 4.3.4. The problem showed in the Java view --not JEE--, and while trying to just run the application with Right button menu -> Run As -> Java Application.