mybatis Cause: java.lang.NumberFormatException: For input string: "Y"

IT 文章3年前 (2023)发布 小编
0 0 0

mybatis在保存char型数据时,竟然发现报如下的数值转换错误异常,找了好久才发现是xml中的一处判断写错了。

[v_error]Cause: java.lang.NumberFormatException: For input string: “Y”[/v_error]

原因就在于以下这段xml配置:

ad

程序员导航

优网导航旗下整合全网优质开发资源,一站式IT编程学习与工具大全网站

<when test="status == 'F'">
         actual_time = sysdate,
</when>

正确的写法应该有如下两种:

<!--正确写法1-->
<when test='status=="F"'>
<!--正确写法2-->
 <when test="status=="F"">

就在于test中引号的区别改过来就好了。

© 版权声明

相关文章

暂无评论

暂无评论...