<resultMap type="Grade" id="gradeResult"><result property="id" column="id"/><result property="gradeName"column="gradeName"/>
<collection property="students" column="id" select="com.zhiyuan.mappers.StudentMapper.findByGradeId"/>
</resultMap>其中,StudentMapper中public Student findByGradeId(Integer id);我想问的是这个方法是否要写成public List<Student> findByGradeId(Integer id);比较好?谢谢!
问题已解决,谢谢大家!