MyBatis 判断条件为等于的时候,常量需要加 .toString()

当MyBatis 判断条件为等于的时候,常量需要加 .toString() 来转换,这种方法是稳定的,推荐使用,比如:

<!-- 正确的,稳定,推荐使用 -->  
<if test="newsImage != null and newsImage == '0'.toString()">  
    <![CDATA[ and len(newsImage) > 0 ]]>  
</if> 
故乡明
原文地址:https://www.cnblogs.com/luweiweicode/p/14893171.html