I have an HTTPSession object and I would like to store user information in it.
I have two options
- Storing the user email as a String and get the user out of the database and use the fields every time.
- Store the User object in the session and get JSTL support, for example I can do ${User.firstName}
Which one is a better solution? Best practice?