|
[
Permalink
| « Hide
]
Chris Beams added a comment - 27/Aug/08 11:59 PM
This feature is required in order to implement an SJC petclinic sample that is 1:1 with Core Spring's
Now functional:
@Configuration @AspectJAutoProxy public class Config { public @Bean TestBean testBean() { return new TestBean("name"); } public @Bean AnAspect aspectBean() { return new AnAspect; } } @Aspect public class AnAspect { ... } Also functional: @AspectJAutoProxy(proxyTestClass=true) @AspectJAutoProxy(include="...") now supported.
Aspect ordering also supported. See AspectJAutoProxyTests for details. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||