热门IT资讯网

getJdbcTemplate().batchUpdate的

发表于:2024-11-24 作者:热门IT资讯网编辑
编辑最后更新 2024年11月24日,执行getJdbcTemplate().batchUpdate需要在ServiceImpl类中添加事务注解(@Transactional(rollbackFor=Exception.class))@T

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

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


0