Can Spring Security use @PreAuthorize on Spring controllers methods?
|
|
||||
|
|
|
Yes, it works fine. You need |
|||||||||||||||||
|
|
If you're using Spring 3.1, you can do some pretty cool stuff with this. Take a look at https://github.com/mohchi/spring-security-request-mapping. It's a sample project that integrates @PreAuthorize with Spring MVC's RequestMappingHandlerMapping so that you can do something like:
A request for "/" will call authenticatedHomePage() if the user is authenticated. Otherwise it will call homePage(). |
|||
|
|
|
See Spring Security FAQ (emphasis mine).
If you apply pointcuts to service layer you only need to set |
|||
|
|