我正在尝试使用 for each 方法进行批量插入,但出现异常告诉我无法更改正在运行的执行程序类型。这很奇怪,因为我有一个这样定义的 SQL 会话:
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory" />
<constructor-arg index="1" value="BATCH" />
</bean>
无论哪种方式,我都想检查当前的执行程序类型是什么,以确保它是一个 BATCH 类型。怎么做?我在 SQLSession 中看不到任何方法...