We have a class which implements several interfaces. We would like to add some pointcut for the entire class - not for a particular interface of it.
How it can be done with Spring AOP? Is it possible to apply an aspect to non-interface class?
|
We have a class which implements several interfaces. We would like to add some pointcut for the entire class - not for a particular interface of it. How it can be done with Spring AOP? Is it possible to apply an aspect to non-interface class?
| |||
|
feedback
|
|
Yes, you have to use CGLIB to proxy classes. See section 7.1.3 of the spring docs
The magic is to define proxy-target-class via the following...
| |||
|
feedback
|