mybatis 映射文件中,if标签判断字符串相等,两种方式:
因为mybatis映射文件,是使用的ognl表达式,所以在判断字符串sex变量是否是字符串Y的时候,
<if test="sex=='Y'.toString()">
<if test = 'sex== "Y"'>
注意:
不能使用
<if test="sex=='Y'">
and 1=1
</if>
因为mybatis会把'Y'解析为字符,java是强类型语言,所以不能这样写。
<select id="getuserinfo" resultType="User" >
select * from USER_INFO_JUST_TEST
<where>
<bind name="temp" value="_parameter.getUserid()"/>
<if test='temp !=null and temp != "2"'>
userid=#{temp}
</if>
</where>
</select>