I have a JSP with multiple forms as the "edit" view of an object. Now I want to send one of the forms, but there is an error in the validate
method, because one of the input fields was not filled.
When the bean is validate and the error is found, Struts returns to the JSP which is defined as the INPUT for the bean in my struts-config.xml
. But now the other forms are missing their values.
How can I solve this issue, so I'll be returns to the JSP with all forms filled again?