首页 > 其他 > 详细

mybatis格式化异常:NumberFormatException,For input string:"x"

时间:2021-03-29 14:20:36      阅读:25      评论:0      收藏:0      [点我收藏+]

https://segmentfault.com/a/1190000006577082

 

问题定位:该问题通常出现在动态sql中,使用String与char类型做比较。如:

<if test="segment != null and segment != ‘‘ and segment == 1">

解决方案:

--方案一
<if test="segment != null and segment != ‘‘ and segment == 1.toString()">

--方案二
<if test=segment != null and segment != ‘‘ and segment == "1">

--方案三
<if test="segment != null and segment != ‘‘ and segment == &quot;1&quot;">

 

mybatis格式化异常:NumberFormatException,For input string:"x"

原文:https://www.cnblogs.com/jixiegongdi/p/14591753.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!