Pre/Post annotation & weaving
Hi all,
what do I have to do in order to find out more about how the Pre/Post annotations are handled? I have a relatively big application (too big to post, that is) and in this app I have one method taht has an annotation of the form
@PreAuthorize("denyAll")
I also have set:
<security:global-method-security pre-post-annotations="enabled" jsr250-annotations="enabled" secured-annotations="enabled"/>
The denyAll annotation is not honored (I can access the method without ado :(), and I would like to know if there is some weaving missing, which classes are woven etc., giving me maybe some idea of what's going wrong.
BTW: I have checked my classpath for duplicates. I am using spring 3.0.0.RC1 (except from the orm-package which is 3.0.0.RC3) with spring-security 3.0.0.RC1.
Best,
Wolfgang