MyBatis--动态SQL

接着上篇MyBatis--代理模式实现数据库增删改查,对于某些需要拼接的复杂SQL语句,MyBatis在映射文件中预定义了一些标签,可以利用这些标签来方便拼接自己的逻辑

一、if标签

顾名思义,if标签就是用来实现if判断的

实现根据员工对象获取员工信息,员工对象中的单个属性为空,则不参与查询条件

定义接口方法:

    /**
     * 根据员工对象获取员工信息
     * @param emp
     * @return
     */
    List<Emp> findByEmp(Emp emp);

映射文件新增查询:

    <!--List<Emp> findByEmp(Emp emp);-->
    <select id="findByEmp" resultType="emp">
        select * from emp where 1 = 1
        <if test="empno != null ">
            and empno = #{empno}
        </if>
        <if test="ename != null ">
            and ename = #{ename}
        </if>
        <if test="job != null ">
            and job = #{job}
        </if>
        <if test="mgr != null ">
            and mgr = #{mgr}
        </if>
        <if test="hiredate != null ">
            and hiredate = #{hiredate}
        </if>
        <if test="sal != null ">
            and sal = #{sal}
        </if>
        <if test="comm != null ">
            and comm = #{comm}
        </if>
        <if test="deptno != null ">
            and deptno = #{deptno}
        </if>
    </select>

测试方法:

    // 根据员工信息动态sql查询员工 -- if
    @Test
    public void test1() {
        EmpMapper mapper = sqlSession.getMapper(EmpMapper.class);
        Emp emp = new Emp();
        emp.setDeptno(20);
        List<Emp> result = mapper.findByEmp(emp);
        result.forEach(System.out::println);
    }

二、where标签

上面我们在where后面跟了个 1 = 1,原因是不加会形成where and ename = ...这种情况,那么sql语句就出错了,也可以直接使用where标签替代

通过where标签查询员工信息

映射文件使用where标签:

    <!--List<Emp> findByEmp(Emp emp);-->
    <select id="findByEmp" resultType="emp">
        select * from emp
        <where>
            <if test="empno != null ">
                and empno = #{empno}
            </if>
            <if test="ename != null ">
                and ename = #{ename}
            </if>
            <if test="job != null ">
                and job = #{job}
            </if>
            <if test="mgr != null ">
                and mgr = #{mgr}
            </if>
            <if test="hiredate != null ">
                and hiredate = #{hiredate}
            </if>
            <if test="sal != null ">
                and sal = #{sal}
            </if>
            <if test="comm != null ">
                and comm = #{comm}
            </if>
            <if test="deptno != null ">
                and deptno = #{deptno}
            </if>
        </where>
    </select>

三、choose标签

choose标签相当于switch语句,并且只要有一个匹配了,就break不往下执行了
choose标签和when标签配合使用

通过choose标签查询员工信息

映射文件:

    <select id="findByEmp2" resultType="emp">
        select * from emp
        <where>
            <choose>
                <when test="empno != null ">
                    and empno = #{empno}
                </when>
                <when test="ename != null ">
                    and ename = #{ename}
                </when>
                <when test="job != null ">
                    and job = #{job}
                </when>
                <when test="mgr != null ">
                    and mgr = #{mgr}
                </when>
                <when test="hiredate != null ">
                    and hiredate = #{hiredate}
                </when>
                <when test="sal != null ">
                    and sal = #{sal}
                </when>
                <when test="comm != null ">
                    and comm = #{comm}
                </when>
                <when test="deptno != null ">
                    and deptno = #{deptno}
                </when>
            </choose>
        </where>
    </select>

测试方法:

    // 根据员工信息动态sql查询员工 -- choose
    @Test
    public void test2() {
        EmpMapper mapper = sqlSession.getMapper(EmpMapper.class);
        Emp emp = new Emp();
        emp.setJob("SALESMAN");
        emp.setDeptno(20);
        List<Emp> result = mapper.findByEmp2(emp);
        result.forEach(System.out::println);
    }

结果打印为职位为SALESMAN条件的员工,部门并不生效

四、set标签

set标签用于数据库更新操作

实现更新员工信息

定义接口方法:

    /**
     * 更新员工信息
     * @param emp
     * @return
     */
    int updateEmp(Emp emp);

映射文件中新增更新:

    <!--int updateEmp(Emp emp);-->
    <update id="updateEmp">
        update emp
        <set>
            <if test="ename != null and ename != '' ">
                ,ename = #{ename}
            </if>
            <if test="job != null and job != '' ">
                ,job = #{job}
            </if>
            <if test="mgr != null ">
                ,mgr = #{mgr}
            </if>
            <if test="hiredate != null ">
                ,hiredate = #{hiredate}
            </if>
            <if test="sal != null ">
                ,sal = #{sal}
            </if>
            <if test="comm != null ">
                ,comm = #{comm}
            </if>
            <if test="deptno != null ">
                ,deptno = #{deptno}
            </if>
        </set>
        where empno = #{empno}
    </update>

其中要注意的是:if标签中要加上","

测试方法:

    // 更新员工信息 -- set
    @Test
    public void test3() {
        EmpMapper mapper = sqlSession.getMapper(EmpMapper.class);
        Emp emp = new Emp();
        emp.setEmpno(7499);
        emp.setJob("SALESMAN");
        emp.setDeptno(20);
        int result = mapper.updateEmp(emp);
        System.out.println(result);

        sqlSession.commit();
    }

五、trim标签

set标签相当于在每个if标签中加上"set"前缀,trim标签支持自定义前缀和后缀

set标签实现更新员工信息

映射文件使用trim:

    <update id="updateEmp2">
        update emp
        <trim prefix="set" prefixOverrides=",">
            <if test="ename != null and ename != '' ">
                ,ename = #{ename}
            </if>
            <if test="job != null and job != '' ">
                ,job = #{job}
            </if>
            <if test="mgr != null ">
                ,mgr = #{mgr}
            </if>
            <if test="hiredate != null ">
                ,hiredate = #{hiredate}
            </if>
            <if test="sal != null ">
                ,sal = #{sal}
            </if>
            <if test="comm != null ">
                ,comm = #{comm}
            </if>
            <if test="deptno != null ">
                ,deptno = #{deptno}
            </if>
        </trim>
        where empno = #{empno}
    </update>

prefixOverrides表示除去第一个匹配的前缀,相应的还有suffixOverrides,用于去除第一个匹配的后缀

六、bind标签

bind标签一般用于模糊查询的模板

实现根据姓名模糊查询员工信息

定义接口方法:

    /**
     * 根据姓名模糊查询员工信息
     * @param ename
     * @return
     */
    List<Emp> findByEname(String ename);

映射文件新增查询:

    <!--List<Emp> findByEname(String ename);-->
    <select id="findByEname" resultType="emp">
        <bind name="likeEname" value="'%'+ename+'%'"/>
        select * from emp where ename like #{likeEname}
    </select>

测试方法:

    // 根据姓名模糊查询员工信息 -- bind
    @Test
    public void test5() {
        EmpMapper mapper = sqlSession.getMapper(EmpMapper.class);
        List<Emp> result = mapper.findByEname("a");
        result.forEach(System.out::println);
    }

七、sql标签

sql标签就是预定义一些常用的字符串当作变量
sql标签与include标签配合使用

在映射文件中定义包含所有表字段的变量,争对上面的模糊查询进行修改
原:

    <!--List<Emp> findByEname(String ename);-->
    <select id="findByEname" resultType="emp">
        <bind name="likeEname" value="'%'+ename+'%'"/>
        select * from emp where ename like #{likeEname}
    </select>

修改后:

    <sql id="empColumn">empno,ename,job,mgr,hiredate,sal,comm,deptno</sql>
    <sql id="baseSelect">select <include refid="empColumn"/> from emp</sql>

    <!--List<Emp> findByEname(String ename);-->
    <select id="findByEname" resultType="emp">
        <bind name="likeEname" value="'%'+ename+'%'"/>
        <include refid="baseSelect" /> where ename like #{likeEname}
    </select>

八、foreach标签

foreach标签用于将数组或List集合拼接

实现根据部门编号数组查询员工信息

定义接口方法:

    /**
     * 根据部门编号数组查询员工信息
     * @param deptnos
     * @return
     */
    List<Emp> findByDeptnoArray(int[] deptnos);

映射文件中使用foreach:

    <!--
    collection:  array表示数组 list表示集合
    open:       闭合的前缀
    close:      闭合的后缀
    separator:  中间元素的分割符
    item:       临时元素的变量名
    -->
    <select id="findByDeptnoArray" resultType="emp">
        select * from emp where deptno in
        <foreach collection="array" open="(" close=")" separator="," item="deptno">
            #{deptno}
        </foreach>
    </select>

测试方法:

    // 根据部门编号数组查询员工信息 -- foreach
    @Test
    public void test6() {
        EmpMapper mapper = sqlSession.getMapper(EmpMapper.class);
        List<Emp> result = mapper.findByDeptnoArray(new int[]{10, 20});
        result.forEach(System.out::println);
    }

MyBatis的标签使用就到此结束了

项目地址:

https://gitee.com/aruba/mybatis_study.git

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,013评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,205评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,370评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,168评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,153评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,954评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,271评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,916评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,382评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,877评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,989评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,624评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,209评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,199评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,418评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,401评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,700评论 2 345

推荐阅读更多精彩内容