model对象中有一对多的关联关系在页面使用:<form:form action="" commandName="form" method="post">如何设置一对多关联的对象?比如有班级类:public class ClassObj{ private String name; private Set<Student> students; /** getter setter **/}学生类:public class Student{ private String name; /** getter setter **/}那页面的<form:form>标签该怎么写,才能在一个form中设置好一对多的关联对象?
添加回答
举报
0/150
提交
取消