posted 15 years ago
Hi guys,
I am very new to Spring and am trying to figure out the API. I have the following controller class defined:
When my post method is called, it forwards it on to the confirmSubmission page. Essentially what I want to do is take my submission object and preserve it for the next forward (ex: when a user clicks "confirm" on the next page, I don't want force spring to reconstruct the object, I would like to instead just use the object that was constructed here). Is there any way I can do this? I looked into the BindingResult API and tried a few things that didn't work.
Basically, I want to prevent myself from having to write the code at line 3 in the snippet below:
Anthony