I want to store user information after logging in and to display my login and username on every page (using jsp). How can I get access in my jsp views to the session bean that would store information of the user that is logged in?
|
feedback
|
|
use the authentication tag
| ||||
|
feedback
|
|
I'm assuming you are using spring security. After successful login put the UserDetails object in the session like so (This is usually the controller where you would forward if login was successfull)
In your JSP you can access the UserDetails object, like so:
| ||||
|
feedback
|
|
This is a near duplicate to http://stackoverflow.com/q/248562/185093. The Spring endorsed method is
but the linked discussion has alternatives. | |||
|
feedback
|