动态SQL的if和when的使用方法

本文详细介绍了在映射文件中如何使用动态SQL的if和when元素。通过if元素实现根据客户姓名和职业的非空条件来动态组装查询语句,而在多个条件的判断上,when元素能按顺序检查条件,只有当前面的条件不满足时,才会继续执行后面的when语句。通过测试类和SqlSession工具类,展示了这两种元素在实际操作中的用法。
摘要由CSDN通过智能技术生成

动态SQL的if和when的使用方法
映射文件CustomerMapper.xml使用if元素编写根据客户姓名和职业组合查询客户信息

<mapper namespace="com.itheima.mapper.CustomerMapper">
    <select id="findCustomerById" parameterType="Customer"
            resultType="Customer">
        select *from customer where 1=1

        <if test="username!=null and username!=''">
            and username like concat('%',#{username},'%')
        </if>
        <if test="jobs!=null and jobs!=''">
            and jobs=#{jobs}
        </if>

    </select>

if的test 属性分别对username和jobs进行非空判断,如果不为空就进行动态SQL组装。

测试类

private SqlSession sqlSession=null;
	@Before
	public void setUp() throws Exception {
		sqlSession=SqlSessionFactoryUtil.openSession();
	}

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



	@Test
	public void findCustomer() {


		Customer customer =new Customer();
		customer.setUsername("jack");
		customer.setJobs("22");
		List<Customer> customers =sqlSession.selectList("com.itheima.mapper"+".CustomerMapper.findCustomerById",customer);
		for(Customer customer2:customers) {
			System.out.println(customer2);
		}

	}

工具类SqlSession

package com.itheima.util;



import java.io.InputStream;
import java.io.Reader;

import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;


public class SqlSessionFactoryUtil {

	private static SqlSessionFactory sqlSessionFactory;
	
	public static SqlSessionFactory getSqlSessionFactory(){
		if(sqlSessionFactory==null){
			InputStream inputStream=null;
			try{
				inputStream=Resources.getResourceAsStream("mybatis-config.xml");
				sqlSessionFactory=new SqlSessionFactoryBuilder().build(inputStream);
			}catch(Exception e){
				e.printStackTrace();
			}
		}
		return sqlSessionFactory;
	}
	
	public static SqlSession openSession(){
		return getSqlSessionFactory().openSession();
	}
}





when元素执行SQL代码

<select id="findCustomerByNameOrJobs" parameterType="Customer" resultType="Customer">
       select *from customer where 1=1
        <choose>
            <when test="username!=null and username!=''">
                and username like concat('%',#{username},'%')
            </when>
            <when test="jobs !=null and jobs!=''">
                and jobs=#{jobs}
            </when>
     <otherwise>
         and phone is not null
     </otherwise>
        </choose>
    </select>

当第一个when元素中的执行条件为真,则只动态组装第一个when元素的SQL,否则就继续判断第二个when元素中的条件是否为真。

when元素测试类

 @Test
    public void findCustomerBy() {


        Customer customer =new Customer();
       /* customer.setUsername("jack");*/
        customer.setJobs("teacher");
        List<Customer> customers =sqlSession.selectList("com.itheima.mapper"+".CustomerMapper.findCustomerByNameOrJobs",customer);
        for(Customer customer2:customers) {
            System.out.println(customer2);
        }

    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值