码农网

网站首页> 后端开发> Java

Mybatis动态SQL实例详解

众衡网络科技

动态SQL

什么是动态SQL?

MyBatis的官方文档中是这样介绍的?

动态 SQL 是 MyBatis 的强大特性之一。如果你使用过 JDBC 或其它类似的框架,你应该能理解根据不同条件拼接 SQL 语句有多痛苦,例如拼接时要确保不能忘记添加必要的空格,还要注意去掉列表最后一个列名的逗号。利用动态 SQL,可以彻底摆脱这种痛苦。

使用动态 SQL 并非一件易事,但借助可用于任何 SQL 映射语句中的强大的动态 SQL 语言,MyBatis 显著地提升了这一特性的易用性。

如果你之前用过 JSTL 或任何基于类 XML 语言的文本处理器,你对动态 SQL 元素可能会感觉似曾相识。在 MyBatis 之前的版本中,需要花时间了解大量的元素。借助功能强大的基于 OGNL 的表达式,MyBatis 3 替换了之前的大部分元素,大大精简了元素种类,现在要学习的元素种类比原来的一半还要少。

换句话说,我们可以根据传入参数的不同,来执行不同的查询条件。

IF标签:

如何使用?

我们首先创建一个Mapper接口,起名为:UserMapper ,并增加一个方法

public interface UserMapper {
 public List<User> findByCondition(User user);
}

同时创建一个xml文件,起名为UserMapper.xml 然后编写SQL

<mapper namespace="com.dxh.dao.UserMapper">
 <select id="findByCondition" parameterType="com.dxh.pojo.User" resultType="com.dxh.pojo.User">
  SELECT * FROM user where 1=1
  <if test="id != null">
    and id = #{id}
   </if>
   <if test="username != null">
    and username = #{username}
   </if>
 </select>
</mapper>

这个SQL的意思是:

很明显我们可以看到where 1=1 是多余的,因此我们可以这样写:

 <select id="findByCondition" parameterType="com.dxh.pojo.User" resultType="com.dxh.pojo.User">
  SELECT * FROM user 
  <where>
   <if test="id != null">
    and id = #{id}
   </if>
   <if test="username != null">
    and username = #{username}
   </if>
  </where>
 </select>

测试:

编写一个测试类:

package com.dxh.test;

import com.dxh.dao.UserMapper;
import com.dxh.pojo.User;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import org.junit.Test;

import java.io.IOException;
import java.io.InputStream;
import java.util.List;

public class TestMain {
 @Test
 public void test1() throws IOException {
  InputStream resourceAsStream = Resources.getResourceAsStream("sqlMapConfig.xml");
  SqlSessionFactory build = new SqlSessionFactoryBuilder().build(resourceAsStream);
  SqlSession sqlSession = build.openSession();
  UserMapper mapper = sqlSession.getMapper(UserMapper.class);
  User user = new User();
  user.setId(1);
  List<User> byCondition = mapper.findByCondition(user);
  for (User user1 : byCondition) {
   System.out.println(user1);
  }
  System.out.println("======");
  User user2 = new User();
  List<User> byCondition2 = mapper.findByCondition(user2);
  for (User user3 : byCondition2) {
   System.out.println(user3);
  }

 }
}

我们执行两次mapper.findByCondition() ,分别传入user和user2,一个的id有被赋值,一个没有,最后的结果为:

User{id=1, username='lucy'}
======
User{id=1, username='lucy'}
User{id=2, username='李四'}
User{id=3, username='zhaowu'}

foreach标签:

当我们需要查询出 id为1、2、3时应该怎么做? SQL应该这样写:SELECT * FROM user where id in (1,2,3)。那么使用mybatis的foreach标签应该如何使用?

如何使用?

在UserMapper接口中增加一个方法:List<User> findByIds(int[] arr);

 public List<User> findByIds(int[] arr);

在UserMapper.xml 中编写:

 <select id="findByIds" parameterType="list" resultType="com.dxh.pojo.User">
  SELECT * FROM user
  <where>
   <foreach collection="array" open="id in (" close=")" item="id" separator=",">
    #{id}
   </foreach>
  </where>
 </select>

我们可以看到,foreach中我们使用到了5个值:

测试:

 @Test
 public void test2() throws IOException {
  InputStream resourceAsStream = Resources.getResourceAsStream("sqlMapConfig.xml");
  SqlSessionFactory build = new SqlSessionFactoryBuilder().build(resourceAsStream);
  SqlSession sqlSession = build.openSession();
  UserMapper mapper = sqlSession.getMapper(UserMapper.class);
  int[] arr={1,3};
  List<User> byCondition = mapper.findByIds(arr);
  for (User user1 : byCondition) {
   System.out.println(user1);
  }
 }

输出结果:

User{id=1, username='lucy'}
User{id=3, username='zhaowu'}

正确~

最后

这里只是介绍了两个经常使用的标签,mybatis中还有很多标签,比如choose、when、otherwise、trim、set等等

值得一说的是Mybatis的官方网站中已经支持中文了,母语看着更舒服~

https://mybatis.org/mybatis-3/zh/

到此这篇关于Mybatis动态SQL的文章就介绍到这了。

Mybatis 动态SQL

本文地址:https://m.manongw.com/article/264.html

文章来源:转载于博客园,转载网址为https://www.cnblogs.com/isdxh/p/13956223.html

版权申明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 ezhongheng@126.com 举报,一经查实,本站将立刻删除。

最近更新
热门素材
html5卡通章鱼素材,几何图形抽象设计

html5卡通章鱼素材,几何图形抽象设计

图片素材

html文字动画特效,文字虚线边框

html文字动画特效,文字虚线边框

文字特效

Bootstrap点击左侧垂直导航菜单全屏网页切换特效

Bootstrap点击左侧垂直导航菜单全屏网页切换特效

导航菜单

js+css3透明渐变风格导航菜单特效

js+css3透明渐变风格导航菜单特效

导航菜单

8款经典的css网站顶部导航栏样式

8款经典的css网站顶部导航栏样式

图片素材

js+css3网站顶部自适应导航栏菜单特效

js+css3网站顶部自适应导航栏菜单特效

图片素材

jQuery自定义添加删除表格行内容特效

jQuery自定义添加删除表格行内容特效

图片素材

jQuery+CSS3漂亮的下拉菜单选择框美化特效

jQuery+CSS3漂亮的下拉菜单选择框美化特效

css3实例

jQuery文字公告无限滚动轮播特效

jQuery文字公告无限滚动轮播特效

css3实例

jQuery+Layui省市区城市三级联动菜单选择特效

jQuery+Layui省市区城市三级联动菜单选择特效

css3实例