I have form object that I set to request in GET request handler in my Spring controller. First time user enters to page, a new form object should be made and set to request.
I'm struggling with this as well. I read this post and it made some things clearer:
Set session variable spring mvc 3
As far as I understood it this basically says:
So if you want to have objects that last longer throughout multiple GET and POST requests you will have to add them manually to the HttpSession, as usual.