转载

SpringBoot-Mapper中Sql语句写法【原创】

最近在学习和使用SpringBoot框架并进行后台项目的开发,对于SpringBoot的介绍就不再做记录,今天记录一下dao层的sql写法,初学时经常忘。

在项目中,我们一般定义一个mapper目录,存放一个个接口类,每个接口类中定义方法,然后在resource目录下定义对应名称的mapper的xml文件,比如下面两个文件:

public interface BeeMapper extends BaseMapper<Bee> {

    List<Bee> queryBeeList();

}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.yayuanzi.mapper.BeeMapper">
    <resultMap id="beeMap" type="com.yayuanzi.entity.Bee">
        <id column="id" property="beeId"/>
        <result column="name" property="name"/>
        <result column="subscription" property="subscription"/>
        <result column="lead_num" property="leadNum"/>
        <result column="listing_num" property="listingNum"/>
        <result column="is_free" property="isFree"/>

        <collection property="beeItemList" column="id" ofType="com.yayuanzi.entity.BeeItem">
            <id column="bee_item_id" property="beeItemId"/>
            <result column="bee_id" property="beeId"/>
            <result column="month" property="month"/>
            <result column="price" property="price"/>
        </collection>
    </resultMap>

    <select id="queryBeeList" resultMap="beeMap">
        SELECT
        b.*,
        bi.*,
        bi.id AS bee_item_id
        FROM
        bee b
        LEFT JOIN
        bee_item bi
        ON
        b.id = bi.bee_id
    </select>

</mapper>

首先在接口类中定义方法名为queryBeeList,则在xml中对应都说select语句的id也对应是这个命名,其次比较重要的是resultMap的定义,这里因为需要用到连表查询,则需要定义resultMap,而这里的对应关系死resultMap的id则是select语句中的resultMap的值,这样就构成了引用关系。

其次值得注意的是resultMap中的collection,这是当连表查询时涉及到一对多关系时,便需要用到,依次指定property,colum,和ofType,便可将查询的结果赋值给Bee实体类中beeItemList属性,与之对应的还有一个association,这个我目前的理解是处理连表查询时涉及到的一对一关系。而resultMap和collection中的result节点则是将表中的列column和对应实体类中的属性property对应起来。

这样就相当于mapper写好了,后面则是service层对mapper的调用和controller层的对应操作。

刚开始对这些一一对应和相互引用关系感觉都是靠强记,后面在用的过程中逐步理解,加深印象,也算是学习的一种过程吧。

转载时请注明出处及相应链接,本文永久地址:https://blog.yayuanzi.com/24242.html

SpringBoot-Mapper中Sql语句写法【原创】

SpringBoot-Mapper中Sql语句写法【原创】 微信打赏

SpringBoot-Mapper中Sql语句写法【原创】 支付宝打赏

感谢您对作者rick的打赏,我们会更加努力!    如果您想成为作者,请点我

原文  https://blog.yayuanzi.com/24242.html
正文到此结束
Loading...