Say a logged in user hits the url:
www.example.com/forum/234
Before the spring mvc action fires, I want to load the User Object, the user's permission, the Forum object.
Now I want to share these objects accross this request. So other classes can look to see, in the current request, for a User
, Permission
and Forum
object.
Potentially it would be cool if a custom freemarker module could also reference these objects if they are available.
is this possible?