I recently moved from the JSecurity plugin to Spring Security. How do I get the authenticated user from within my controllers?
|
1
|
|
|
|
|
|
I'm using 0.5.1 and the following works for me:
|
||||
|
|
|
It's not currently documented, but in the plugin installation file, there are 3 methods that it adds to every controller so that you don't actually have to inject the authenticationService:
This means that you can just call
To get the principal object. It also has "isUserLogin" to see if the user is logged and "authUserDomain" to get the actual domain class instance (the Person/User) associated with the principal of the logged in user. |
||||
|
