-
Dec 1st, 2012, 11:22 PM
#11
Hi Rob,
Thanks for your help.
I removed aopalliance bean from my root applicationContext and things worked.
Can you please tell me whats the relationship between aopalliance bean and my spring security context ? Is there any conflict ?
-
Dec 2nd, 2012, 09:32 AM
#12
I suggest you read about AOP in the Spring Reference. You might also look at the Getting Started with Spring Security 3.1 presentation from SpringOne 2011 at around 1 hour in. In short, when you proxy an object using interface based proxying, it exposes only the interface methods. You could switch to CGLIB based proxies, which will still have all the methods available on it. Keep in mind there are certain limitations with CGLIB proxies (i.e. cannot proxy final classes, non-default constructors, etc). Your other option is to just not join on the Spring Security project.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules