【mybatis】第二篇:@Select注解中加入字段判断

简介: 【mybatis】第二篇:@Select注解中加入字段判断

背景

因需要链表操作,所以采用了@select注解来写sql,抛弃了传统的xml形式。

1.错误性示范代码

@Select({"<script>",
         "select a.*,b.uuid,b.denoter_name as denoterName,b.spelling,b.public_name as publicName from t_denoter_qrcode a right join t_bz_denoter b on a.denoter_uuid=b.denoter_uuid ",
             "where 1=1 ",
                 "<if test='qrcodeRequest.denoterAddress !=null and qrcodeRequest.denoterAddress!="" '>" ,
                    "  and a.address like concat('%',#{qrcodeRequest.denoterAddress},'%')" ,
                 "</if> ",
                 "<if test='qrcodeRequest.denoterName !=null and qrcodeRequest.denoterName!="" '>" ,
                    " and b.denoter_name like concat('%',#{qrcodeRequest.denoterName},'%') " ,
                 "</if> ",
                 "<if test='qrcodeRequest.publicName !=null and qrcodeRequest.publicName!="" '> " ,
                    " and b.public_name like concat('%',#{qrcodeRequest.publicName},'%')" ,
                 "</if> ",
                    " <if test='qrcodeRequest.xzqhdm !=null and qrcodeRequest.xzqhdm!="" '>" ,
                    " and b.zzzz9998 like concat(#{qrcodeRequest.xzqhdm},'%') " ,
                 "</if> ",
            "</script>"})
    List<DenoterQrcodeEntity> denoterQueryList(@Param("qrcodeRequest") QrcodeRequest qrcodeRequest);

会报如下错误:

if元素类型必须后跟属性规范、">“或"/>”

这是因为我们在写sql时候没有转义导致的!

2、正确的写法,看仔细哦

@Select({"<script>",
            "select a.*,b.uuid,b.denoter_name as denoterName,b.spelling,b.public_name as publicName from t_denoter_qrcode a right join t_bz_denoter b on a.denoter_uuid=b.denoter_uuid ",
              "where 1=1 ",
                 "<if test='qrcodeRequest.denoterAddress !=null and qrcodeRequest.denoterAddress!=\"\" '>" ,
                    "  and a.address like concat('%',#{qrcodeRequest.denoterAddress},'%')" ,
                 "</if> ",
                 "<if test='qrcodeRequest.denoterName !=null and qrcodeRequest.denoterName!=\"\" '>" ,
                    " and b.denoter_name like concat('%',#{qrcodeRequest.denoterName},'%') " ,
                 "</if> ",
                 "<if test='qrcodeRequest.publicName !=null and qrcodeRequest.publicName!=\"\" '> " ,
                    " and b.public_name like concat('%',#{qrcodeRequest.publicName},'%')" ,
                 "</if> ",
                 "<if test='qrcodeRequest.xzqhdm !=null and qrcodeRequest.xzqhdm!=\"\" '>" ,
                    " and b.zzzz9998 like concat(#{qrcodeRequest.xzqhdm},'%') " ,
                 "</if> ",
            "</script>"})
    List<DenoterQrcodeEntity> denoterQueryList(@Param("qrcodeRequest") QrcodeRequest qrcodeRequest);

可以看到上面写法中,在判断空字符串的时候加入了转义,这样就可以解决问题!

相关文章
|
2月前
|
Java 数据库连接 数据库
mybatis查询数据,返回的对象少了一个字段
mybatis查询数据,返回的对象少了一个字段
175 8
|
3天前
|
SQL Java 数据库连接
【MyBatisPlus·最新教程】包含多个改造案例,常用注解、条件构造器、代码生成、静态工具、类型处理器、分页插件、自动填充字段
MyBatis-Plus是一个MyBatis的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。本文讲解了最新版MP的使用教程,包含多个改造案例,常用注解、条件构造器、代码生成、静态工具、类型处理器、分页插件、自动填充字段等核心功能。
【MyBatisPlus·最新教程】包含多个改造案例,常用注解、条件构造器、代码生成、静态工具、类型处理器、分页插件、自动填充字段
|
13天前
|
SQL 缓存 Java
MyBatis如何关闭一级缓存(分注解和xml两种方式)
MyBatis如何关闭一级缓存(分注解和xml两种方式)
41 5
|
13天前
|
Java 数据库连接 mybatis
Mybatis使用注解方式实现批量更新、批量新增
Mybatis使用注解方式实现批量更新、批量新增
33 3
|
19天前
|
SQL 存储 数据库
深入理解@TableField注解的使用-MybatisPlus教程
`@TableField`注解在MyBatis-Plus中是一个非常灵活和强大的工具,能够帮助开发者精细控制实体类与数据库表字段之间的映射关系。通过合理使用 `@TableField`注解,可以实现字段名称映射、自动填充、条件查询以及自定义类型处理等高级功能。这些功能在实际开发中,可以显著提高代码的可读性和维护性。如果需要进一步优化和管理你的MyBatis-Plus应用程
91 3
|
18天前
|
Java 数据库连接 mybatis
Mybatis使用注解方式实现批量更新、批量新增
Mybatis使用注解方式实现批量更新、批量新增
36 1
|
23天前
|
SQL Java 数据库连接
mybatis如何仅仅查询某个表的几个字段
【10月更文挑战第19天】mybatis如何仅仅查询某个表的几个字段
22 1
|
1月前
|
SQL Java 数据库连接
Mybatis入门(select标签)
这篇文章介绍了Mybatis中`select`标签的基本用法及其相关属性,并通过示例展示了如何配置和执行SQL查询语句。
41 0
Mybatis入门(select标签)
|
1月前
|
Java 数据库连接 Maven
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和MyBatis Generator,使用逆向工程来自动生成Java代码,包括实体类、Mapper文件和Example文件,以提高开发效率。
105 2
mybatis使用一:springboot整合mybatis、mybatis generator,使用逆向工程生成java代码。
|
1月前
|
SQL JSON Java
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和PageHelper进行分页操作,并且集成Swagger2来生成API文档,同时定义了统一的数据返回格式和请求模块。
52 1
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块