MyBatis 判断条件为等于的时候,常量需要加 .toString()
Posted Dreamice
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis 判断条件为等于的时候,常量需要加 .toString()相关的知识,希望对你有一定的参考价值。
当MyBatis 判断条件为等于的时候,常量需要加 .toString() 来转换,这种方法是稳定的,推荐使用,比如:
<!-- 正确的,稳定,推荐使用 --> <if test="newsImage != null and newsImage == ‘0‘.toString()"> <![CDATA[ and len(newsImage) > 0 ]]> </if>
以上是关于MyBatis 判断条件为等于的时候,常量需要加 .toString()的主要内容,如果未能解决你的问题,请参考以下文章