mybatis if标签判断字符串相等

时间:2023-12-05 13:55:14

mybatis 映射文件中,if标签判断字符串相等,两种方式:

因为mybatis映射文件,是使用的ognl表达式,所以在判断字符串sex变量是否是字符串Y的时候,

1.

<if test="sex=='Y'.toString()">
<if test = 'sex== "Y"'>

注意:

不能使用

<if test="sex=='Y'">
and 1=1
</if>

因为mybatis会把'Y'解析为字符,java是强类型语言,所以不能这样写。