Mybatis if test 字符串比较不生效详解编程语言

 
<if test="publishType!='2'"> 
      and t.status='3' 
      and t.has_attachment='YES' 
</if>

其中publishType为传来的String类型参数,想比较其不等于字符串2,但是判断不生效

原因:

单引号是char类型,双引号是string类型!

char表示字符,定义时使用用单引号表示,只能存储一个字符。

而String表示字符串,定义时使用双引号表示,可以存储0个或多个字符,其实string类型就是char类型的数组表现形式。

所以’2’被认为是char类型,和String类型不相等

 

解决方法:

1.改成双引号

 
<if test='publishType!="2"'> 
    and t.status='3' 
    and t.has_attachment='YES' 
</if>

2.加.toString()方法

 
<if test="publishType!='2'.toString()"> 
      and t.status='3' 
      and t.has_attachment='YES' 
</if>

 

 

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/16402.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论