getJdbcTemplate().batchUpdate的性能优化
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getJdbcTemplate().batchUpdate的性能优化相关的知识,希望对你有一定的参考价值。
执行getJdbcTemplate().batchUpdate需要在ServiceImpl类中添加事务注解(@Transactional(rollbackFor=Exception.class))
@Transactional(rollbackFor=Exception.class) public void updateMenu(String[] objs) throws Exception { repository.updateSomething(objs);//这里调用了批处理 }
以上是关于getJdbcTemplate().batchUpdate的性能优化的主要内容,如果未能解决你的问题,请参考以下文章
getJdbcTemplate().queryForList(sql)返回list空
SpringMVC GetJdbcTemplate() 从查询中获取值
用spring getJdbcTemplate().queryForObject查询数据库里的一条记录是报错
getJdbcTemplate().queryForList(sql)返回的list里面是空值,但是我在PL/SQL里面执行SQL的时候是有数据的