MyBatis if test 判断字符串相等不生效问题
目录
- MyBatis if test 判断字符串相等不生效
- 原因分析
- 解决方法
- MyBatis if test 判断字符串相等的坑
- 1. if 判断字符串
- 2. if嵌套
MyBatis if test 判断字符串相等不生效
采用 MyBatis 框架操作 MySQL 数据库时,判断传入的字符串 priceFlag 值为"0"时,按照 price 属性降序排列,如下 xml 语句未生效:
<if test="priceFlag != null and priceFlag == '0'"> ORDER BY price DESC </if>
原因分析
MyBatis 是使用 OGNL 表达式来进行解析的,在 OGNL 表达式中,'0’会被解析成字符,因为 java 是强类型的,char 和 String 不等,所以 if 标签中的 SQL 不会被解析。
解决方法
解决这个问题,可以把 if test 判断语句修改成如下几种方式中的任何一种:
<if test='"0" == priceFlag'>
或者
<if test='"0".equals(priceFlag)'>
或者
<if test="'0'.toString() == priceFlag">
修改完成后,SQL 语句就可以被解析了。
MyBatis if test 判断字符串相等的坑
自己开发的系统,客户反映有问题,本着不想改java代码,想想从数据库入手,加一些判断条件就想到了if test判断等于某个字符串执行另一个sql语句的原则,没想到想当然了,使用 if test=“sex==‘m’”直接报错,看了下网上果然大家都有遇到这样的问题,解决方式如下:
1. if 判断字符串
- 错误写法:if test="status == 'Y'"特别是数字字符的时候。。。。
结果:抛异常NumberFormatException异常!提示内容非常少,看不出问题在哪里!
- 正确写法:if test='status == "y" '
还可以这样写:if test="status == 'y'.toString()"
2. if嵌套
<if test="@com.qbao.tickets.common.util.MybatisUtils@isNotEmpty(firstLetter)"> <if test="firstLetter=='-1'.toString()"> and FIRST_LETTER is null or FIRST_LETTER ='' </if> <if test="firstLetter!='-1'.toString()"> and FIRST_LETTER = #{firstLetter, jdbcType=VARCHAR} </if> </if>
以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。
赞 (0)