美文网首页
SpringBoot—JPA: javax.persistenc

SpringBoot—JPA: javax.persistenc

作者: Hughman | 来源:发表于2021-12-10 10:32 被阅读0次

    问题

    void deleteBy(int id);
    

      jpa调用deleteBy或者update时,抛异常Executing an update/delete query; nested exception is javax.persistence.TransactionRequiredException

    解决方案

    分析

    1. 因为事务问题,update、delete操作涉及到事务机制,需要进行设置。
    2. 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这个问题。

    相关文章

      网友评论

          本文标题:SpringBoot—JPA: javax.persistenc

          本文链接:https://www.haomeiwen.com/subject/xelcfrtx.html