I have a domain object with 5 property. I preload the object in my GET method and display just one of the property in the form. When the form gets submitted, the object contains only one property with value. How do I get the remaining properties and their values without putting a hidden variable for each property in my form.
Share
If you don’t want to store properties in
hiddenfields, you can store your object in the session. In Spring 3 this can be done declaratively with@SessionAttributeannotation: