我是靠谱客的博主 无聊玫瑰,这篇文章主要介绍Mybatis实现动态SQL,现在分享给大家,希望可以做个参考。

什么是动态SQL:根据不同的条件生成不同的语句

复制代码
1
2
3
4
5
6
在 MyBatis 之前的版本中,需要花时间了解大量的元素。借助功能强大的基于 OGNL 的表达式,MyBatis 3 替换了之前的大部分元素,大大精简了元素种类,现在要学习的元素种类比原来的一半还要少。 ​ if choose (when, otherwise) trim (where, set) foreach

搭建环境:

复制代码
1
2
3
4
5
6
7
CREATE TABLE `blog` (  `id` varchar(50) NOT NULL ,  `title` varchar(100) NOT NULL ,  `author` varchar(30) NOT NULL ,  `create_time` datetime NOT NULL,  `views` int(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8

创建一个基础工程三步骤:

  1. 导包
  2. 编写配置文件
  3. 编写实体类
复制代码
1
2
3
4
5
6
7
8
9
10
//使用了lombok注解 @Data public class Blog {    private String id;    private String title;    private String author;    private Date createTime;//属性名和字段名不一致    private int views; }
  1. 编写实体类对应的mapper接口和xxmapper.xml

IF:

mapper:

复制代码
1
2
//查询blog List<Blog> getBlogIf(Map map);

mapper.xml

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
<select id="getBlogIf" parameterType="map" resultType="Blog">   select * from blog where 1=1    <if test="title != null">       and title like "%"#{title}"%"    </if>    <if test="author != null">       and author = #{author}    </if> ​ </select>

test(测试代码):

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
@Test public void getBlogIf(){    SqlSession sqlsession = MybatisUtils.getSqlsession();    BlogMapper mapper = sqlsession.getMapper(BlogMapper.class);    HashMap map = new HashMap();    map.put("title","mybatis");    List<Blog> blogIf = mapper.getBlogIf(map);    for (Blog blog : blogIf) {        System.out.println(blog);   }    sqlsession.close(); }
复制代码
1
 

choose (when, otherwise)

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--choose标签只能选择一个标签--> <select id="getBlogChoose" parameterType="map" resultType="Blog"> select * from blog <where> <choose> <when test="title != null"> title = #{title} </when> <when test="author != null"> and author = #{author} </when> <otherwise> and views = #{views} </otherwise> </choose> </where> </select>

trim(where、set)

where 元素只会在子元素返回任何内容的情况下才插入 “WHERE” 子句。而且,若子句的开头为 “AND” 或 “OR”,where 元素也会将它们去除。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
<select id="getBlogIf" parameterType="map" resultType="Blog">    select * from blog    <where>        <if test="title != null">            title like "%"#{title}"%"        </if>        /*where 标签可以智能取出and标签*/        <if test="author != null">            and author = #{author}        </if>    </where> ​ </select>

set 元素会动态地在行首插入 SET 关键字,并会删掉额外的逗号(这些逗号是在使用条件语句给列赋值时引入的)。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<update id="updateBlog" parameterType="map">   update blog    <set>        <if test="title != null">           title = #{title},        </if>        <if test="author =! null">           author = #{author},        </if>        <if test="views =! null">           views = #{views}        </if>    </set>   where id = #{id} </update>

trim:就是设置关于where和set的前后忽略内容:

复制代码
1
2
3
4
5
6
<trim prefix="WHERE" prefixOverrides="AND |OR "> ... </trim> <trim prefix="SET" suffixOverrides=","> ... </trim>

forearch:

foreach 元素的功能非常强大,它允许你指定一个集合,声明可以在元素体内使用的集合项(item)和索引(index)变量。它也允许你指定开头与结尾的字符串以及集合项迭代之间的分隔符。

复制代码
1
复制代码
1
2
3
4
5
6
7
8
9
10
<select id="queryBlogForeach" parameterType="map" resultType="Blog">   select * from blog    <where>        <foreach collection="ids" item="id" open="and (" close=")" separator="or">           id = #{id}        </foreach>    </where> </select>

测试:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@Test public void queryBlogForeach(){    SqlSession sqlsession = MybatisUtils.getSqlsession();    BlogMapper mapper = sqlsession.getMapper(BlogMapper.class);    HashMap map = new HashMap(); ​    ArrayList<Integer> ids = new ArrayList<>();    ids.add(1);    map.put("ids",ids);    //       map.put("title","mybatis");    //       map.put("views",100);    //       map.put("id","1");    List<Blog> blogs = mapper.queryBlogForeach(map);    for (Blog blog : blogs) {        System.out.println(blog);   }    sqlsession.close(); }

SQL片段:

将SQL公共部分抽取出来,方便于共用

如:判断是否存在title时、

  • 使用SQL标签提取公共部分(最好只包含简单判断)

复制代码
1
2
3
4
5
6
<sql id="if-tltle">    <if test="title != null">       title = #{title},    </if> </sql>
  • 在需要使用的地方使用include标签

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<update id="updateBlog" parameterType="map">   update blog    <set>        <include refid="if-tltle"></include>        <if test="author != null">           author = #{author},        </if>        <if test="views != null">           views = #{views}        </if>    </set>   where id = #{id} </update>

动态SQL就是在拼接SQL语句。

最后

以上就是无聊玫瑰最近收集整理的关于Mybatis实现动态SQL的全部内容,更多相关Mybatis实现动态SQL内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(93)

评论列表共有 0 条评论

立即
投稿
返回
顶部