MyBatis trim标签

在 MyBatis 中除了使用 if+where 实现多条件查询,还有一个更为灵活的元素 trim 能够替代之前的做法。

trim 一般用于去除 SQL 语句中多余的 AND 关键字、逗号或者给 SQL 语句前拼接 where、set 等后缀,可用于选择性插入、更新、删除或者条件查询等操作。trim 语法格式如下。

  • <trim prefix="前缀" suffix="后缀" prefixOverrides="忽略前缀字符" suffixOverrides="忽略后缀字符">
  • SQL语句
  • </trim>

trim 中属性说明如下。

属性描述
prefix给SQL语句拼接的前缀,为 trim 包含的内容加上前缀
suffix给SQL语句拼接的后缀,为 trim 包含的内容加上后缀
prefixOverrides去除 SQL 语句前面的关键字或字符,该关键字或者字符由 prefixOverrides 属性指定。
suffixOverrides去除 SQL 语句后面的关键字或者字符,该关键字或者字符由 suffixOverrides 属性指定。

示例

本节示例基于《第一个MyBatis程序》一节的代码实现。

下面我们利用 trim 实现与 where 元素相同的效果。

要求:根据网站名称或网址对网站进行模糊查询。

WebsiteMapper.xml 代码如下。

  1. <select id="selectWebsite" resultType="net.biancheng.po.Website">
  2. SELECT id,name,url,age,country
  3. FROM website
  4. <trim prefix="where" prefixOverrides="and">
  5. <if test="name != null and name !=''">
  6. AND name LIKE CONCAT ('%',#{name},'%')
  7. </if>
  8. <if test="url!= null">
  9. AND url like concat ('%',#{url},'%')
  10. </if>
  11. </trim>
  12. </select>

WebsiteMapper 类中方法如下。

  • public List<Website> selectWebsite(Website website);

测试类代码如下。

  1. public class Test {
  2. public static void main(String[] args) throws IOException {
  3. // 读取配置文件mybatis-config.xml
  4. InputStream config = Resources.getResourceAsStream("mybatis-config.xml"); // 根据配置文件构建
  5. SqlSessionFactory ssf = new SqlSessionFactoryBuilder().build(config);
  6. // 通过SqlSessionFactory创建SqlSession
  7. SqlSession ss = ssf.openSession();
  8. Website site = new Website();
  9. site.setname("编程");
  10. site.setUrl("http");
  11. List<Website> siteList = ss.selectList("net.biancheng.mapper.WebsiteMapper.selectWebsite", site);
  12. for (Website ws : siteList) {
  13. System.out.println(ws);
  14. }
  15. }
  16. }

输出结果如下。

DEBUG [main] - ==>  Preparing: SELECT id,name,url,age,country FROM website where name LIKE CONCAT ('%',?,'%') AND url like concat ('%',?,'%')
DEBUG [main] - ==> Parameters: 编程(String), http(String)
DEBUG [main] - <==      Total: 1
Website[id=1,name=编程帮,url=https://www.biancheng.net/,age=10,country=CN]

腾讯云推出云产品限时特惠抢购活动:2C2G云服务器7.9元/月起
本文链接:https://www.jhelp.net/p/UyaqI6JkRDAiRaNa (转载请保留)。
关注下面的标签,发现更多相似文章