美文网首页
mybatis入门

mybatis入门

作者: 刘周可 | 来源:发表于2018-06-15 15:03 被阅读0次
- 动态 SQL
    - if 条件判断

        ```xml
        <select id="findActiveBlogLike" resultType="Blog">
        SELECT * FROM BLOG WHERE state = ‘ACTIVE’ 
        <if test="title != null">
            AND title like #{title}
        </if>
        <if test="author != null and author.name != null">
            AND author_name like #{author.name}
        </if>
        </select> 
        ```
    - choose (when, otherwise)条件查询

        ```xml
        <select id="findActiveBlogLike"
            resultType="Blog">
        SELECT * FROM BLOG WHERE state = ‘ACTIVE’
        <choose>
            <when test="title != null">
            AND title like #{title}
            </when>
            <when test="author != null and author.name != null">
            AND author_name like #{author.name}
            </when>
            <otherwise>
            AND featured = 1
            </otherwise>
        </choose>
        </select> 
        ```
    - trim (where, set)
        - where:元素只会在至少有一个子元素的条件返回 SQL 子句的情况下才去插入“WHERE”子句。而且,若语句的开头为“AND”或“OR”,where 元素也会将它们去除。

            ```xml
            <select id="findActiveBlogLike"
                resultType="Blog">
            SELECT * FROM BLOG 
            <where> 
                <if test="state != null">
                    state = #{state}
                </if> 
                <if test="title != null">
                    AND title like #{title}
                </if>
                <if test="author != null and author.name != null">
                    AND author_name like #{author.name}
                </if>
            </where>
            </select>
            ```
        - trim:通过自定义 trim 元素来定制 where 元素的功能

            ```xml
            <trim prefix="WHERE" prefixOverrides="AND |OR ">
            ... 
            </trim>
            ```
        - set:元素可以用于动态包含需要更新的列,而舍去其它的

            ```xml
            <update id="updateAuthorIfNecessary">
            update Author
                <set>
                <if test="username != null">username=#{username},</if>
                <if test="password != null">password=#{password},</if>
                <if test="email != null">email=#{email},</if>
                <if test="bio != null">bio=#{bio}</if>
                </set>
            where id=#{id}
            </update>
            ```
    - foreach:对一个集合进行遍历,通常是在构建 IN 条件语句的时候

        ```xml
        <select id="selectPostIn" resultType="domain.blog.Post">
        SELECT *
        FROM POST P
        WHERE ID in
        <foreach item="item" index="index" collection="list"
            open="(" separator="," close=")">
                #{item}
        </foreach>
        </select>
        ```
    - bind:元素可以从 OGNL 表达式中创建一个变量并将其绑定到上下文

        ```xml
        <select id="selectBlogsLike" resultType="Blog">
            <bind name="pattern" value="'%' + _parameter.getTitle() + '%'" />
            SELECT * FROM BLOG
            WHERE title LIKE #{pattern}
        </select>
        ```

相关文章

  • MyBatis

    MyBatis学习总结(一)——MyBatis快速入门 超详细MyBatis入门讲解

  • 深入浅出Mybatis-Mybatis-Generator

    目录 入门 Mybatis Generator 是什么 Mybatis Generator是Mybatis的代码生...

  • Mybatis的入门

    一.Mybatis介绍 二.Mybatis的架构 三.Mybatis入门程序开发 下载mybatis 导包核心+依...

  • Mybatis快速入门

    Mybatis 学习内容 Mybatis框架的简单入门 Mybatis框架基本的使用 Mybatis框架的深入和多...

  • MyBatis之快速入门

    title: MyBatis之快速入门tags: MyBatiscategories: MyBatis 若图片无法...

  • 1.Mybatis - 搭建

    参考 Mybatis 官方 MyBatis学习总结(一)——MyBatis快速入门 安装 说明基于Maven 步骤...

  • Intellij 第三章 测试Spring整合MyBatis

    0、如需查看Spring整合MyBatis知识请访问 MyBatis入门【十二】 Spring整合MyBatis基...

  • Mybatis源码解读

    Mybatis入门 Mybatis构成 SqlSessionFactoryBuilder(构造器):根据配置信息或...

  • Mybatis入门

    目的:入门,熟悉mybatis是什么,怎么用。 1. 初识Mybatis 1.1 Mybatis介绍 MyBati...

  • MyBatis入门 Day10 2018-11-28

    MyBatis mybatis-3.4.6 jdk1.8+ 一、mybatis入门 1.依赖jar包 pom.xm...

网友评论

      本文标题:mybatis入门

      本文链接:https://www.haomeiwen.com/subject/nllmeftx.html