mybatis异常提示For input string:{1=null}
报错情况:
<where>
<if test='#{judge} != null and #{judge}==1'>
create_time>='2021-01-09 00:00:00' and create_time <='2021-01-30 23:59:59'</if>
<if test='#{judge}!= null and #{judge}==2'>
create_time>='2021-02-09 00:00:00' and create_time <='2021-02-30 23:59:59'</if>
</where>
解决办法:
<where>
<if test='judge != null and judge==1'>
create_time>='2021-01-09 00:00:00' and create_time <='2021-01-30 23:59:59'
</if>
<if test='judge!= null and judge==2'>
create_time>='2021-02-09 00:00:00' and create_time <='2021-02-30 23:59:59'
</if>
</where>
原因:
Mybatis中的 #KaTeX parse error: Expected 'EOF', got '#' at position 8: 的区别和作用 #̲相当于对数据 加上 双引号,则是事什么就显示什么
例如:id = #{id},如果传入的值是99,那么解析成sql时的值为 id =“99”
例如:id = ${id},如果传入的值是99,那么解析成sql时的值为d = 99
本质上的区别:
将传入的数据都当成一个字符串,会对自动传入的数据加一个双引号。#
方式能够很大程度防止sql注入#
方式一般用于传入数据库对象,例如传入表名
排序时使用order by 动态参数使用$