问题
void deleteBy(int id);
jpa调用deleteBy或者update时,抛异常Executing an update/delete query; nested exception is javax.persistence.TransactionRequiredException
解决方案
分析
- 因为事务问题,update、delete操作涉及到事务机制,需要进行设置。
- Spring Data JPA中的deleteByXXX,是先select查询,然后在整个Transaction完毕后,才执行delete。
方案1
@Transactional
@Modifying(clearAutomatically = true)
@Query(value = "DELETE FROM `tb_a` WHERE `id` = ?1", nativeQuery = true)
void deleteTb01ById(int id);
方案2
TbA removeById(int id);
方案3
void deleteBy(int id);
tbADao.deleteById(123);
tbADao.flush();
总结
方案2和方案3供参考,本人常用方案1中的@Transactional
、@Modifying配合@Query注解进行解决JPA deleteBy这个问题。
网友评论