Hi all!
This is my first post here! I am trying really hard to make a type not controlled by the Spring container to be injected with aspects with no success.
Iīve searched the forum and tried some things posted here but it just doesnīt work.
Letīs get to the problem!
I have an abstract class called AbstractViewHelper and I need to advice it after returning the invocation of a method called Iīve annotated the class with and use the following on my applicationContext-aop.xml
Code:
<aop:after-returning method="logMethodExit" returning="s" pointcut="execution(* edu.test..*ViewHelper.outcome(..))" />
I also included
Code:
<aop:spring-configured>
on the applicationContext-aop.xml
The versions of libs I am using are:
* spring-framework 2.0.8
* spring-aspects 2.0.8
* aspectjrt 1.5.3
* aspectjweaver 1.5.3
Sorry for any grammar mistakes!
Thanks in advance!