码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis xml <if>判断字符串相等

时间:2018-09-19 10:16:32      阅读:420      评论:0      收藏:0      [点我收藏+]

标签:字符   tostring   标签   判断字符串   test   string   ==   bsp   nbsp   

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是强类型语言,所以不能这样写。

 

mybatis xml <if>判断字符串相等

标签:字符   tostring   标签   判断字符串   test   string   ==   bsp   nbsp   

原文地址:https://www.cnblogs.com/archermeng/p/9672730.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!