使用mybatis批量操作数据时,输出如下异常:
nested exception is org.apache.ibatis.binding.BindingException: Parameter 'oType' not found. Available parameters are [list, param1]
原因是mybatis 批量插入中的参数获取出错,下为原配置:
int insertTestObjects( List<TestObject> objectList);
<insert id="insertTestObjects" parameterType="com.xxx.TestObject">
insert into testObject (o_id,o_type, create_time)
values
<foreach collection="list" item="item" separator=",">
(#{item.oId,jdbcType=BIGINT}, #{oType,jdbcType=INTEGER},
#{item.createTime,jdbcType=TIMESTAMP})
</foreach>
</insert>
原因是批量插入的参数oType前缀忘了加了,批量操作必须使用foreach的item对应参数获取对象字段,改为item.oType就可以了:
<insert id="insertTestObjects" parameterType="com.xxx.TestObject">
insert into testObject (o_id,o_type, create_time)
values
<foreach collection="list" item="item" separator=",">
(#{item.oId,jdbcType=BIGINT}, #{item.oType,jdbcType=INTEGER},
#{item.createTime,jdbcType=TIMESTAMP})
</foreach>
</insert>

本文解析了一个在使用MyBatis进行批量数据插入时遇到的异常:BindingException。问题出现在XML映射文件中,由于参数引用错误导致。通过正确使用foreach元素内的item属性,问题得以解决。
4290

被折叠的 条评论
为什么被折叠?



