将ArrayList对象从jsp发送到Spring控制器

时间:2016-12-28 12:14:46

标签: hibernate jsp spring-mvc

这是高拉夫。我是Spring mvc和hibernate的新手。要求是学生有多学位的细节,比如board_name scheool / college,pass of year。Please see the attached image问题是如何绑定JSP页面中的Degree deails并将其发送给Spring控制器。提前致谢。

1 个答案:

答案 0 :(得分:0)

我假设学位信息存储在模型对象中名为degreeList的列表中。学位详情的每一行中的输入名称将为degreeList[<rowIndex>].<fieldName>(例如,对于第一行中的ID输入,它将为<input name="degreeList[0].id" />)。由此,弹簧控制器可以获得学生模型中的学位详细信息列表。