mybatis if test 判断字符串的坑

Posted DylanZ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis if test 判断字符串的坑相关的知识,希望对你有一定的参考价值。

今天调试一个非常简单的test判断字符串查询语句,怎么调试都是不好用,后来百度才发现,是我写的test标签写错了,我写成:

 <if test="record.current != null and record.current==‘1‘" >    注意:1旁边是单引号

 

正确写法:

 <if test="record.current != null and record.current==‘1‘.toString()" >

 

或者:

<if test = ‘record.current != null and record.current==“1”‘> 注意:1 旁边是双引号

 

因为mybatis会把‘1‘解析为字符,java是强类型语言,所以不能这样写,需要双引号

以上是关于mybatis if test 判断字符串的坑的主要内容,如果未能解决你的问题,请参考以下文章

mybatis匹配字符串的坑

mybatis if判断两个值是不是相等存在的坑啊

MyBatis if test 判断字符串相等不生效

mybatis的 if test 条件判断字符串单双引号解析问题

mybatis 关于 if test 判断字符串的大坑

mybatis if标签判断字符串