Mybatis 的动态 SQL 语句
- 动态 SQL 之< if >标签
- 持久层 Dao 接口
复制代码
1
2List<User> findByUser(User user);
- 持久层 Dao 映射配置
复制代码
1
2
3
4
5
6
7
8
9
10
11
12<select id="findByUser" resultType="user" parameterType="user"> select * from user where 1=1 <if test="username!=null and username != '' "> and username like #{username} </if> <if test="address != null"> and address like #{address} </if> </select> 注意:<if>标签的 test 属性中写的是对象的属性名,如果是包装类的对象要使用 OGNL 表达式的写法。 另外要注意 where 1=1 的作用~!
- 测试
复制代码
1
2
3
4
5
6
7
8
9
10
11
12@Test public void testFindByUser() { User u = new User(); u.setUsername("%王%"); u.setAddress("%顺义%"); //6.执行操作 List<User> users = userDao.findByUser(u); for(User user : users) { System.out.println(user); } }
- 动态 SQL 之< where >标签
为了简化上面 where 1=1 的条件拼装,我们可以采用< where >标签来简化开发。
- 持久层 Dao 映射配置
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13<!-- 根据用户信息查询 --> <select id="findByUser" resultType="user" parameterType="user"> <include refid="defaultSql"></include> <where> <if test="username!=null and username != '' "> and username like #{username} </if> <if test="address != null"> and address like #{address} </if> </where> </select>
- 动态标签之< foreach >标签
- 需求:
传入多个 id 查询用户信息,用下边两个 sql 实现:
SELECT * FROM USERS WHERE username LIKE ‘%张%’ AND (id =10 OR id =89 OR id=16)
SELECT * FROM USERS WHERE username LIKE ‘%张%’ AND id IN (10,89,16)
这样我们在进行范围查询时,就要将一个集合中的值,作为参数动态添加进来。
这样我们将如何进行参数的传递? - 在 QueryVo 中加入一个 List 集合用于封装参数
复制代码
1
2
3
4
5
6
7
8
9
10public class QueryVo implements Serializable { private List<Integer> ids; public List<Integer> getIds() { return ids; } public void setIds(List<Integer> ids) { this.ids = ids; } }
- 持久层 Dao 接口
复制代码
1
2List<User> findInIds(QueryVo vo);
- 持久层 Dao 映射配置
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22<!-- 查询所有用户在 id 的集合之中 --> <select id="findInIds" resultType="user" parameterType="queryvo"> <!-- select * from user where id in (1,2,3,4,5); --> <include refid="defaultSql"></include> <where> <if test="ids != null and ids.size() > 0"> <foreach collection="ids" open="id in ( " close=")" item="uid" separator=","> #{uid} </foreach> </if> </where> </select> SQL 语句: select 字段 from user where id in (?) <foreach>标签用于遍历集合,它的属性: collection:代表要遍历的集合元素,注意编写时不要写#{} open:代表语句的开始部分 close:代表结束部分 item:代表遍历集合的每个元素,生成的变量名 sperator:代表分隔符
- 编写测试方法
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17@Test public void testFindInIds() { QueryVo vo = new QueryVo(); List<Integer> ids = new ArrayList<Integer>(); ids.add(41); ids.add(42); ids.add(43); ids.add(46); ids.add(57); vo.setIds(ids); //6.执行操作 List<User> users = userDao.findInIds(vo); for(User user : users) { System.out.println(user); } }
- Mybatis 中简化编写的 SQL 片段
Sql 中可将重复的 sql 提取出来,使用时用 include 引用即可,最终达到 sql 重用的目的。
- 定义代码片段
复制代码
1
2
3
4
5<!-- 抽取重复的语句代码片段 --> <sql id="defaultSql"> select * from user </sql>
- 引用代码片段
复制代码
1
2
3
4
5
6
7
8
9
10<!-- 配置查询所有操作 --> <select id="findAll" resultType="user"> <include refid="defaultSql"></include> </select> <!-- 根据 id 查询 --> <select id="findById" resultType="User" parameterType="int"> <include refid="defaultSql"></include> where id = #{uid} </select>
最后
以上就是轻松秀发最近收集整理的关于Mybatis(三)— 动态 SQL 语句的全部内容,更多相关Mybatis(三)—内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复