mybatis:级联(一对多)以下知识来源说明:http://www.java1234.com/MyBatis中使用collection标签来解决一对多的关联查询,ofType属性指定集合中元素的对象类型。entity:Gradeentity:Studentmapping:GradeMapper.xmlStudentMapper.xml
以下知识来源说明:http://www.java1234.com/MyBatis中使用collection标签来解决一对多的关联查询,ofType属性指定集合中元素的对象类型。entity:Gradepublic class Grade { private Integer id; private String gradeName; private List<Studen...