Can Spring Security use @PreAuthorize on Spring controllers methods?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 12 down vote accepted

Yes, it works fine.

You need <security:global-method-security pre-post-annotations="enabled" /> in ...-servlet.xml. It also requires CGLIB proxies, so either your controllers shouldn't have interfaces, or you should use proxy-target-class = true.

link|improve this answer
I put that in my spring security application context (I already had it actually) but Spring does not do anything with controllers using @Controller. Do I have to do anything special to get this to work above and beyond what you said? In – egervari Jun 21 '10 at 19:49
2  
I said, global-method-security should be in DispatcherServlet's context (...-servlet.xml) not in "spring security application context". – axtavt Jun 21 '10 at 20:01
Thanks! I didn't move it because I couldn't see why it would make a difference since it gets merged... I guess it didn't ;) Works now! – egervari Jun 21 '10 at 20:26
2  
They are not merged. DispatcherServlet's context is a child context of the ContextLoaderListener's one. So they have different AOP configurations and therefore require different occurences of <global-method-security>. – axtavt Jun 21 '10 at 20:52
1  
Thanks, axtavt. You saved my day. The spring document didn't mention that <security:global-method-security pre-post-annotations="enabled" /> should be in ...-servlet.xml. I put it in security application context as well and didn't work. As soon as it's moved to ...-servlet.xml, it started working. I still have a question, when should <security:global-method-security> be placed in security application context? – Georgie Porgie Jun 29 '11 at 15:40
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.