亲宝软件园·资讯

展开

MyBatis association使用

李不卷 人气:0

通过association对两表进行联表查询

student表属性如下

teacher表属性如下

按照查询嵌套处理

当使用以下时,查询出来存在问题

<select id="getStudentTeacher" resultType="Student" >
    select s.id,s.name,t.id, t.name from student s, teacher t where s.tid = t.id
</select>

思路:

利用结果集映射,联系起来

编写接口

//    查询所有的学生信息以及对应的老师信息
List<Student> getStudent();

编写mapper配置文件

<select id="getStudent" resultMap = "StudentTeacher" >
    select * from student
</select>

<resultMap id="StudentTeacher" type="Student">
    <result property="id" column="id" />
    <result property="name" column="name" />
    <!--        复杂的属性需要单独处理
            对象:association
            集合:collection
-->
    <association property="teacher" column="tid" javaType="Teacher" select="getTeacher"/>

</resultMap>

<select id="getTeacher" resultType="Teacher">
    select * from teacher where id = #{nid}
</select>

测试得到结果

结果中嵌套了结果

一些注意问题:

按照结果嵌套处理

<!--按照结果嵌套处理-->
<select id="getStudent2" resultMap="StudentTeacher2" >
    select s.id sid,s.name sname,t.id tid, t.name tname
    from student s, teacher t
    where s.tid = t.id
</select>

<resultMap id="StudentTeacher2" type="Student">
    <result property="id" column="sid" />
    <result property="name" column="sname" />
    <association property="teacher" javaType="Teacher" >
        <result property="id" column="tid" />
        <result property="name" column="tname" />
    </association>
</resultMap>

查询出来的需要展现的结果都应该在resultMap中进行定义,否则会以默认值进行展示如下,在resultMap中注释掉tid和sname后,执行的结果

总结

加载全部内容

相关教程
猜你喜欢
用户评论