Hi,

I am trying to resolve an issue with the AOP part of my source code. The issue is I am getting the above warning message and thus my aspects are not affecting the methods execution.

- I am sure that both the aspect class and the class which aspect should operate on are defined in the spring configuration file
- I am sure that I enabled the aspect feature using

Code:
<aop:aspectj-autoproxy/>
- I am sure that the method that I am advising is there.

Is there anything like defining aspect bean and the business bean in a specific order?


Thanks.