1. jsp
<form:form commandName="voBean" name="formName" method="post">
<input type="hidden" name="param" />
<input type="hidden" name="param" />
<input type="hidden" name="param" />
..
..
..
</form:form>
2. controller
@RequestMapping(value="....")
public String goMainScreen(@ModelAttribute("voBean") VOBean VOBean, WebRequest ServletRequest)
throws Exception {
.....
.....
.....
.....
}
3. VO Bean
public class VOBean {
}
<form:form commandName="voBean" name="formName" method="post">
<input type="hidden" name="param" />
<input type="hidden" name="param" />
<input type="hidden" name="param" />
..
..
..
</form:form>
2. controller
@RequestMapping(value="....")
public String goMainScreen(@ModelAttribute("voBean") VOBean VOBean, WebRequest ServletRequest)
throws Exception {
.....
.....
.....
.....
}
3. VO Bean
public class VOBean {
String[] param;
.....
.....
getter, setter
.....
.....
.....
.....
getter, setter
.....
.....
}