【无标题】

Mybatis实现多表联查询


ybatis实现多表联查询方式


业务装配对两个表写单独的sql语句,在业务(service)把查询结果进行联合。
使用Auto Mapping特性,在实现两个表联合查询时通过别名完成自动映射。
使用Mybatis的<resultMap>标签进行实现


1、<resultMap>标签单表中的映射


写在<select>标签中,不用谢resultType属性,可以单独的在<resultMap>中将数据库字段与java属性不匹配进行映射。

2、使用<resultMap>标签在两个表中关联单个对象(N+1方式)


N+1查询的方式,先查询出一个表的全部信息,根据这个表的信息查询另一个表的信息。
实现步骤在Student类中包含一个Teacher对象 
在StudentMapper.xml文件中写上查询学生的sql,然后通过<resultMap>来完成Teacher对象的查询
具体代码:

java实体类:

public class Student {
    private int id;
    private String name;
    private int age;
    private int tid;
    private Teacher teacher;


TeacherMapper.xml文件中提供一个查询老师对象的sql:

<mapper namespace="com.test.mapper.TeacherMapper">
    <select id="selById" parameterType="int" resultType="Teacher">
    select * from teacher where id =#{0}
    </select>
</mapper>


在StudentMapper.xml中写上查询学生信息:

<mapper namespace="com.test.mapper.StudentMapper">
    <resultMap type="Student" id="stuMap">
        <id column="id" property="id"/>
        <result column="name" property="name"/>
        <result column="age" property="age"/>
        <result column="tid" property="tid"/>
        <association property="teacher" select="com.test.mapper.TeacherMapper.selById" 
        column="tid"></association>
    </resultMap>
    <select id="selAll" resultMap="stuMap" >
        select * from student
    </select>
</mapper>


几个属性标签说明:
<id>  主键
<result> 其它字段
<association>装配对象时使用,其中  property  表示类中的属性名  select  表示要执行的sql语句(写完整的sql语句) column 要传过去的字段参数 


3、使用<resultMap>实现关联单个对象(联合查询方式)
 

<!-- 在mapper中实现联合查询 -->
    <resultMap type="Student" id="stuMap1">
        <id column="sid" property="id"/>
        <result column="sname" property="name"/>
        <result column="sage" property="age"/>
        <result column="tid" property="tid"/>
        <association property="teacher" javaType="teacher">
            <id column="tid" property="id"/>
            <result column="tname" property="name"/>
        </association>
    </resultMap>
    
    <select id="selAll1" resultMap="stuMap1">
    select s.id sid,s.name sname,s.age sage,t.id tid,t.name tname 
    from student s left join teacher t on s.tid = t.id;
    </select>

4、使用<resultMap>查询关联集合对象(N+1)


在实体类Teacher中加上含有多个Student的属性list,代码:

public class Teacher {
    private int id;
    private String name;
    private List<Student> list;


在StudentMapper.xml中添加通过tid查询学生的sql语句,代码:

<mapper namespace="com.test.mapper.StudentMapper">
    <select id="selByTid" resultType="student" parameterType="int" >
        select * from student where tid = #{0}
    </select>
</mapper>


在TeacherMapper.xml中添加查询全部,然后通过<resultMap>来装配其它的,代码:

<mapper namespace="com.test.mapper.TeacherMapper">
    <resultMap type="Teacher" id="teacMap">
        <id column="id" property="id"/>
        <result column="name" property="name"/>
        <collection property="list" select="com.test.mapper.StudentMapper.selByTid" column="id"/>
    </resultMap>
    <select id="selAll" resultMap="teacMap">
        select * from teacher
    </select>
</mapper>

5、使用<resultMap>实现加载集合数据(联合查询方式)

<!-- 使用联合查询 -->
    <resultMap type="Teacher" id="teacMap1">
        <id column="tid" property="id"/>
        <result column="tname" property="name"/>
        <collection property="list" ofType="Student">
            <id column="sid" property="id"/>
            <result column="sname" property="name"/>
            <result column="age" property="age"/>
            <result column="tid1" property="tid"/>
        </collection>
    </resultMap>
    <select id="selAll1" resultMap="teacMap1">
        select t.id tid, t.name tname, s.id sid, s.name sname,age ,s.tid tid1
        from teacher t left join student s on t.id = s.tid
    </select>


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值