How do you do the following in Spring 3.0? (I found so many results, I’m not sure which is the right way)
What I want to know is how to do the following in the “best practice” standart Spring 3.0 Annotation way
- Multiple page form (How to use
@SessionAttributes) - Multiple submit buttons on a form (should I use
@RequestMapping(params={"btn1"}...)?) - Automatic binding of form fields to beans (
@InitBinder? must it use “Spring” forms?)
1 Answer