Mybatis的动态SQL~

MyBatis有一个强大特性就是它的动态SQL。在实际项目开发中,经常需要根据不同条件拼接SQL语句,拼接时还要确保不能忘了必要的空格,有时候还要注意省掉列名列表最后的逗号...等等。在使用JDBC 或其他类似持久层框架操作数据库时,处理这种情况是非常麻烦的,甚至可以用痛苦来形容,而在MyBatis中利用动态SQL这一特性可以很简单地解决这个问题。

动态SQL元素和使用JSTL或其他类似基于XML的文本处理器相似,MyBatis采用功能强大的基于OGNL的表达式来完成动态SQL。OGNL 的表达式可以被用在任意的SQL 映射语句中。


如上,假设有如上一张表,我们想查询如下条件:

  • status=1
  • 公司名包含【华为】
  • 品牌名包含【华为】

则在映射文件中书写如下sql语句:

XML 复制代码
    <select id="selectByCondition" resultMap="brandResultMap">
        select * from tb_brand where status=#{status} and company_name like #{companyName}
        and brand_name like #{brandName}
    </select>

接口中的方法名:

java 复制代码
    List<Brand> selectByCondition(@Param("status") int status,
                                  @Param("companyName")String companyName,
                                  @Param("brandName")String brandName);

测试类如下:

java 复制代码
public void testselectByCondition() throws IOException {

        int status=1;
        String companyName="华为";
        String brandName="华为";
        companyName="%"+companyName+"%";
        brandName="%"+brandName+"%";
//        1.获取SqlSessionFactory
        String resource ="mybatis-config.xml";
        InputStream inputStream = Resources.getResourceAsStream(resource);
        SqlSessionFactory sqlSessionFactory=new SqlSessionFactoryBuilder().build(inputStream);
//        2.获取SqlSession对象
        SqlSession sqlSession= sqlSessionFactory.openSession();
//        3.获取Mapper接口的代理对象
        BrandMapper brandMapper=sqlSession.getMapper(BrandMapper.class);
//        4.执行方法
        List<Brand> brands=brandMapper.selectByCondition(status,companyName,brandName);
        System.out.println(brands);
//        5.释放资源
        sqlSession.close();
    }

查询结果:

但是在实际场景中,可能并不需要同时查询3个条件,这样的话,参数值无法传入给sql中的占位符,后台会发生语法错误~

此时用到Mybatis中的动态sql技术:

修改sql语句如下:

sql 复制代码
    <select id="selectByCondition" resultMap="brandResultMap">
        select * from tb_brand where
                <if test="status!=null">
                    status=#{status}
                </if>
                <if test="company_name!=null and company_name!=''">
                and company_name like #{companyName}
                </if>

                <if test="brand_name!=null and brand_name!=''">
                and brand_name like #{brandName}
                </if>

    </select>

如上,当有条件不存在时,会直接省略对该条件的判断。

sql 复制代码
    <select id="selectByCondition" resultMap="brandResultMap">
        select * from tb_brand
                <where>
                    <if test="status!=null">
                        status=#{status}
                    </if>
                    <if test="companyName!=null and companyName!=''">
                        and company_name like #{companyName}
                    </if>

                    <if test="brandName!=null and brandName!=''">
                        and brand_name like #{brandName}
                    </if>
                </where>


    </select>

但是还存在bug,当第一个条件不存在时会直接导致关键字where和and相连接导致语法错误,将where标签嵌到外面即可解决~

相关推荐
齐 飞23 分钟前
MongoDB笔记01-概念与安装
前端·数据库·笔记·后端·mongodb
云空24 分钟前
《Python 与 SQLite:强大的数据库组合》
数据库·python·sqlite
暮毅28 分钟前
10.Node.js连接MongoDb
数据库·mongodb·node.js
wowocpp32 分钟前
ubuntu 22.04 server 格式化 磁盘 为 ext4 并 自动挂载 LTS
服务器·数据库·ubuntu
九圣残炎32 分钟前
【从零开始的LeetCode-算法】1456. 定长子串中元音的最大数目
java·算法·leetcode
wclass-zhengge34 分钟前
Netty篇(入门编程)
java·linux·服务器
成富1 小时前
文本转SQL(Text-to-SQL),场景介绍与 Spring AI 实现
数据库·人工智能·sql·spring·oracle
songqq271 小时前
SQL题:使用hive查询各类型专利top 10申请人,以及对应的专利申请数
数据库·sql
计算机学长felix1 小时前
基于SpringBoot的“校园交友网站”的设计与实现(源码+数据库+文档+PPT)
数据库·spring boot·毕业设计·交友
Re.不晚1 小时前
Java入门15——抽象类
java·开发语言·学习·算法·intellij-idea