服务器之家

服务器之家 > 正文

mybatis if标签判断不生效的解决方法

时间:2021-08-05 11:41     来源/作者:暮霭层层楚天阔

实际需求

?
1
2
3
4
5
6
<if test="computationRule == '1'">
  FROM app_sz_bbb a
</if>
<if test="computationRule == '2'">
  FROM app_ccc a
</if>

这种情况不生效,

原因:mybatis是用OGNL表达式来解析的,在OGNL的表达式中,'0'会被解析成字符,java是强类型的,char 和 一个string 会导致不等,所以if标签中的sql不会被解析。

先说怎么解决

三种:

加 .toString()

?
1
2
3
4
5
6
<if test="computationRule == '1'.toString()">
  FROM app_sz_bbb a
</if>
<if test="computationRule == '2'.toString()">
  FROM app_ccc a
</if>

choose when 标签代替

?
1
2
3
4
5
6
7
8
<choose>
   <when test="computationRule == '1'">
   FROM app_sz_bbb a
   </when>
   <otherwise>
     FROM app_sz_bbb a
   </otherwise>
 </choose>

单引号 换成双引号

?
1
2
3
4
5
6
<if test='computationRule == "1"'>
  FROM app_sz_bbb a
</if>
<if test='computationRule == "2"'>
  FROM app_ccc a
</if>

MyBatis 中if 标签 判断字符串不生效

 

异常sql 的mapper 文件:

?
1
2
3
4
5
6
<if test="isBound != null and isBound !='' and isBound == '1'">
  and box_sid is not null
</if>
<if test="isBound != null and isBound !='' and isBound == '2'">
  and box_sid is null
</if>

正确sql 的mapper 文件

?
1
2
3
4
5
6
<if test="isBound != null and isBound !='' and isBound == '1'.toString()">
  and box_sid is not null
</if>
<if test="isBound != null and isBound !='' and isBound == '2'.toString()">
  and box_sid is null
 </if>

到此这篇关于mybatis if标签判断不生效的解决方法的文章就介绍到这了,更多相关mybatis if标签判断不生效内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_43167632/article/details/110189333

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部