getJdbcTemplate().batchUpdate的
更新:HHH   时间:2023-1-7


执行getJdbcTemplate().batchUpdate需要在ServiceImpl类中添加事务注解(@Transactional(rollbackFor=Exception.class))

@Transactional(rollbackFor=Exception.class)
public void updateMenu(String[] objs) throws Exception {
	repository.updateSomething(objs);//这里调用了批处理
}


返回开发技术教程...