MyBatis动态SQL的使用

为什么需要使用动态sql?

在实际项目的开发中,开发人员在使用JDBC或其他持久层框架进行开发时,经常需要根据不同的条件拼接SQL语句,拼接SQL语句时还要确保不能遗漏必要的空格、标点符号等,这种编程方式给开发人员带来了非常大的不便,而MyBatis提供的SQL语句动态组装功能,恰能很好地解决这一问题。

动态SQL中的元素

MyBatis动态SQL的使用_第1张图片

元素

通过一个具体的案例演示单条件判断下元素的使用,案例具体实现步骤如下。

1.引入依赖

pom.xml



    4.0.0

    org.example
    _20230410
    1.0-SNAPSHOT

    
        8
        8
        UTF-8
    

    
        
            org.springframework
            spring-context
            5.2.3.RELEASE
        

        
            org.springframework
            spring-beans
            5.2.3.RELEASE
        

        
            org.mybatis
            mybatis
            3.5.2
        

        
            mysql
            mysql-connector-java
            8.0.11
        

        
            junit
            junit
            4.12
            test
        
    

2.数据库建表

MyBatis动态SQL的使用_第2张图片

3.根据数据库字段创建实体类Customer

MyBatis动态SQL的使用_第3张图片

package cn.hdc.pojo;

public class Customer {
    private int id;
    private String username;
    private String jobs;
    private String phone;

    @Override
    public String toString() {
        return "Customer{" +
                "id=" + id +
                ", username='" + username + '\'' +
                ", jobs='" + jobs + '\'' +
                ", phone='" + phone + '\'' +
                '}';
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getJobs() {
        return jobs;
    }

    public void setJobs(String jobs) {
        this.jobs = jobs;
    }

    public String getPhone() {
        return phone;
    }

    public void setPhone(String phone) {
        this.phone = phone;
    }
}

 4.创建CustomerMapper接口,申明要实现的方法 findCustomerByUsernameAndJobs

MyBatis动态SQL的使用_第4张图片

package cn.hdc.mapper;

import cn.hdc.pojo.Customer;

import java.util.List;

public interface CustomerMapper {
    public List findCustomerByUsernameAndJobs(Customer customer);
}

5.根据接口alt+insert快速创建CustomerMapper.xml(映射文件)

MyBatis动态SQL的使用_第5张图片




    

6.创建db.properties,配置数据库连接属性

MyBatis动态SQL的使用_第6张图片

driver.driver=com.mysql.cj.jdbc.Driver
driver.url=jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC&characterEncoding=utf8&useUnicode=true&useSSL=false
driver.username=root
driver.password=666666

7.配置mybatis-config.xml

MyBatis动态SQL的使用_第7张图片




    

    
        
            
            
                
                
                
                
            
        
    


    

8.根据CustomerMapper接口,alt+insert 快速创建测试类:

MyBatis动态SQL的使用_第8张图片

package cn.hdc.mapper;

import cn.hdc.pojo.Customer;
import cn.hdc.utils.MybatisUtils;
import org.apache.ibatis.session.SqlSession;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import java.util.List;

import static org.junit.Assert.*;

public class CustomerMapperTest {
    private SqlSession session;

    @Before
    public void setUp() throws Exception {
        session = MybatisUtils.getSession();
    }

    @After
    public void tearDown() throws Exception {
        session.close();
    }

    @Test
    public void findCustomerByUsernameAndJobs() {
        Customer customer = new Customer();
        //customer.setUsername("jack");
        customer.setJobs("teacher");
        List customers = session.selectList("cn.hdc.mapper.CustomerMapper.findCustomerByUsernameAndJobs", customer);
        for (Customer c : customers) {
            System.out.println(c);
        }
    }
}

运行结果:

MyBatis动态SQL的使用_第9张图片

MyBatis动态SQL的使用_第10张图片

项目结构: 

MyBatis动态SQL的使用_第11张图片

元素

使用场景

在使用元素时,只要test属性中的表达式为true,就会执行元素中的条件语句,但是在实际应用中,有时只需要从多个选项中选择一个去执行。例如下面的场景︰“当客户名称不为空,则只根据客户名称进行客户筛选;当客户名称为空,而客户职业不为空,则只根据客户职业进行客户筛选。当客户名称和客户职业都为空,则要求查询出所有电话不为空的客户信息。"针对上面情况,使用元素进行处理是不合适的。MyBatis提供了元素进行处理,这三个元素往往组合在一起使用,作用相当于Java语言中的if...else if...else。

代码结构不变,只是在上一个例子中CustomerMapper.xml添加如下代码:

MyBatis动态SQL的使用_第12张图片

在接口中申明方法:

MyBatis动态SQL的使用_第13张图片

添加测试方法:

MyBatis动态SQL的使用_第14张图片

运行结果:

MyBatis动态SQL的使用_第15张图片

MyBatis动态SQL的使用_第16张图片

MyBatis动态SQL的使用_第17张图片

元素

MyBatis动态SQL的使用_第18张图片

元素 

MyBatis动态SQL的使用_第19张图片

上述代码配置中,元素会自动判断由组合条件拼装的SQL语句,只有元素内的某一个或多个条件成立时,才会在拼接SQL中加入where关键字,否则将不会添加;即使where之后的内容有多余的“AND”或“OR”,元素也会自动将他们去除。

元素

元素用于删除多余的关键字,它可以直接实现元素的功能元素包含4个属性。

MyBatis动态SQL的使用_第20张图片

MyBatis动态SQL的使用_第21张图片

上述配置代码中,元素的作用是去除一些多余的前缀字符串,它的prefix属性代表的是语句的前缀(where ),而prefixOverrides属性代表的是需要去除的前缀字符串(SQL中的“AND”或“OR”)。

更新操作

元素

在Hibernate框架中,如果想要更新某一个对象,就需要发送所有的字段给持久化对象,然而在实际应用中,大多数情况下都是更新某一个或几个字段。如果更新的每一条数据都要将其所有的属性都更新一遍,那么执行效率是非常差的。为了解决更新数据的效率问题,MyBatis提供了元素。元素主要用于更新操作,它可以在动态SQL语句前输出一个SET关键字,并将SQL语句中最后一个多余的逗号去除。元素与元素结合可以只更新需要更新的字段。

代码示例:

CustomerMapper.xml中添加以下代码:

MyBatis动态SQL的使用_第22张图片

 

    
        update t_customer
        
            
                username=#{username},
            
            
                jobs=#{jobs},
            
            
                phone=#{phone},
            
        
        where id = #{id}
    

接口中声明此方法:

MyBatis动态SQL的使用_第23张图片

 

创建测试方法:

MyBatis动态SQL的使用_第24张图片

 

运行结果:

MyBatis动态SQL的使用_第25张图片

 

MyBatis动态SQL的使用_第26张图片

 

第二种方法使用

MyBatis动态SQL的使用_第27张图片

 

 
            update t_customer
            
                
                    username=#{username},
                
                
                    jobs=#{jobs},
                
                
                    phone=#{phone},
                
            
            where id = #{id}
        

  • 在映射文件中使用元素和元素组合进行update语句动态SQL组装时,如果元素内包含的内容都为空,则会出现SQL语法错误。因此,在使用元素进行字段信息更新时,要确保传入的更新字段不能都为空。
  • 除了使用元素外,还可以通过元素来实现更新操作。其中,元素的prefix属性指定要添加的元素所包含内容的前缀为set ,suffixOverrides属性指定去除的元素所包含内容的后缀为逗号。

复杂查询操作

元素的属性

MyBatis动态SQL的使用_第28张图片

属性的取值

在遍历参数时,属性的值是必须指定的。不同情况下,该属性的取值也是不一样的,主要有以下三种情况:List类型、数值类型、Map类型。 

  • 若入参为单参数且参数类型是一个List , collection属性值为list。
  • 若入参为单参数且参数类型是一个数组,collection属性值为array。
  • 若传入参数为多参数,就需要把参数封装为一个Map进行处理,collection属性值为Map。若传入参数为多参数,就需要把参数封装为一个Map进行处理,collection属性值为Map。

元素迭代数组 

例如,要从数据表t_customer中查询出id为1、2、3的客户信息,就可以利用数组作为参数,存储id的属性值1、2、3,并通过元素迭代数组完成客户信息的批量查询操作。

CustomerMapper.xml

MyBatis动态SQL的使用_第29张图片

CustomerMapper接口:

MyBatis动态SQL的使用_第30张图片 

测试方法:

MyBatis动态SQL的使用_第31张图片 

运行结果:

MyBatis动态SQL的使用_第32张图片 

  

元素迭代List

CustomerMapper.xml

MyBatis动态SQL的使用_第33张图片

CustomerMapper接口:

MyBatis动态SQL的使用_第34张图片 

创建测试方法:

MyBatis动态SQL的使用_第35张图片 

运行结果:

MyBatis动态SQL的使用_第36张图片 

 

元素迭代Map

CustomerMapper.xml

MyBatis动态SQL的使用_第37张图片

CustomerMapper接口:

MyBatis动态SQL的使用_第38张图片 

创建测试方法:

MyBatis动态SQL的使用_第39张图片 

运行结果:

MyBatis动态SQL的使用_第40张图片 

 

你可能感兴趣的:(JavaEE,mybatis,sql,数据库)