java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > MyBatis动态数据库

MyBatis使用标签动态操作数据库详解

作者:从零开始的-CodeNinja之路

这篇文章主要介绍了MyBatis中使用标签动态操作数据库的方法,动态SQL是指在运行PL/SQL块时动态输入SQL语句,是Mybatis的强大特性之⼀,能够完成不同条件下不同的sql拼接,需要的朋友可以参考下

前言

动态SQL是Mybatis的强大特性之⼀,能够完成不同条件下不同的sql拼接

在传统的使用JDBC的方法中,相信大家在组合复杂的的SQL语句的时候,需要去拼接,稍不注意哪怕少了个空格,都会导致错误,Mybatis的动态SQL功能正是为了解决这种问题,其通过if, trim, where, set, foreach、include标签,可组合成非常灵活的SQL语句,从而提高开发人员的效率,下面就去感受Mybatis动态SQL的魅力吧。

1. <if>标签

在注册用户的时候,可能会有这样⼀个问题,如下图所示:

注册分为两种字段:必填字段和非必填字段,那如果在添加用户的时候有不确定的字段传入,程序应该如何实现呢?

这个时候就需要使用动态标签来判断了,比如添加的时候性别gender为非必填字段,具体实现如下:

Integer insertUserByCondition(UserInfo userInfo);

Mapper.xml实现:

<insert id="insertUserByCondition">
	INSERT INTO userinfo (
	username,
	`password`,
	age,
	<if test="gender != null">
		gender,
	</if>
	phone)
	VALUES (
	#{username},
	#{age},
	<if test="gender != null">
		#{gender},
	</if>
	#{phone})
</insert>

注意test中的gender,是传入对象中的属性,不是数据库字段

Q:可不可以不进行判断,直接把字段设置为null呢?

A:不可以,这种情况下,如果gender字段有默认值,就会设置为默认值

2. <trim>标签

之前的插入用户功能,只是有⼀个gender字段可能是选填项,如果有多个字段,⼀般考虑使用标签结合标签,对多个字段都采取动态生成的方式。

标签中有如下属性:

调整Mapper.xml的插入语句为:

<insert id="insertUserByCondition">
	INSERT INTO userinfo
	<trim prefix="(" suffix=")" suffixOverrides=",">
		<if test="username !=null">
			username,
		</if>
		<if test="password !=null">
			`password`,
		</if>
		<if test="age != null">
			age,
		</if>
		<if test="gender != null">
			gender,
		</if>
		<if test="phone != null">
			phone,
		</if>
	</trim>
	VALUES
	<trim prefix="(" suffix=")" suffixOverrides=",">
		<if test="username !=null">
			#{username},
		</if>
		<if test="password !=null">
			#{password},
		</if>
		<if test="age != null">
			#{age},
		</if>
		<if test="gender != null">
			#{gender},
		</if>
		<if test="phone != null">
			#{phone}
		</if>
	</trim>
</insert>

3. <where>标签

看下⾯这个场景,系统会根据我们的筛选条件,动态组装where条件

需求:传入的用户对象,根据属性做where条件查询,用户对象中属性不为null的,都为查询条件

原有SQL:

SELECT * FROM userinfo WHERE age = 18 AND gender = 1 AND delete_flag =0

Mapper.xml实现

<select id="queryByCondition" resultType="com.example.demo.model.UserInfo">
	select id, username, age, gender, phone, delete_flag, create_time,update_timefrom userinfo
	<where>
	<if test="age != null">
		and age = #{age}
	</if>
	<if test="gender != null">
		and gender = #{gender}
	</if>
	<if test="deleteFlag != null">
		and delete_flag = #{deleteFlag}
	</if>
	</where>
</select>

只会在子元素有内容的情况下才插入where子句,⽽且会⾃动去除子句的开头的AND或OR

以上标签也可以使用 替换,但是此种情况下,当子元素都没有内容时,where关键字也会保留

4. <set>标签

需求:根据传入的用户对象属性来更新用户数据,可以使用标签来指定动态内容.

接口定义:根据传入的用户id属性,修改其他不为null的属性

Integer updateUserByCondition(UserInfo userInfo);

Mapper.xml

<update id="updateUserByCondition">
	update userinfo
	<set>
		<if test="username != null">
			username = #{username},
		</if>
		<if test="age != null">
			age = #{age},
		</if>
		<if test="deleteFlag != null">
			delete_flag = #{deleteFlag},
		</if>
	</set>
	where id = #{id}
</update>

<set> :动态的在SQL语句中插入set关键字,并会删掉额外的逗号.(用于update语句中)

以上标签也可以使用 替换。

5. <foreach>标签

对集合进行遍历时可以使用该标签。标签有如下属性:

需求:根据多个userid,删除用户数据

接口方法:

void deleteByIds(List<Integer> ids);

ArticleMapper.xml中新增删除sql:

<delete id="deleteByIds">
	delete from userinfo
	where id in
	<foreach collection="ids" item="id" separator="," open="(" close=")">
		#{id}
	</foreach>
</delete>

6. <include>标签

问题分析:

在xml映射文件中配置的SQL,有时可能会存在很多重复的片段,此时就会存在很多冗余的代码

我们可以对重复的代码片段进行抽取,将其通过 标签封装到⼀个SQL片段,然后再通过<include> 标签进行引用。

:定义可重用的SQL片段 :通过属性refid,指定包含的SQL片段

<sql id="allColumn">
id, username, age, gender, phone, delete_flag, create_time, update_time
</sql>

通过 标签在原来抽取的地方进行引用。操作如下:

<select id="queryAllUser" resultMap="BaseMap">
	select
	<include refid="allColumn"></include>
	from userinfo
</select>
<select id="queryById" resultType="com.example.demo.model.UserInfo">
	select
	<include refid="allColumn"></include>
	from userinfo where id= #{id}
</select>

以上就是MyBatis使用标签动态操作数据库详解的详细内容,更多关于MyBatis动态数据库的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文