首页 > 解决方案 > 为什么 JpaRepository.delete() 在删除实体之前检索它?

问题描述

当我使用它的 id 删除一个实体时,我得到以下日志输出。

2020-09-19 17:07:35.536 DEBUG 14544 --- [nio-8080-exec-2] org.hibernate.SQL                        : select comment0_.id as id1_15_0_, comment0_.acceptedAsAnswer as accepted2_15_0_, comment0_.commentDate as commentD3_15_0_, comment0_.commenter_id as comment10_15_0_, comment0_.commenterIp as commente4_15_0_, comment0_.content as content5_15_0_, comment0_.dateDeleted as dateDele6_15_0_, comment0_.deleted as deleted7_15_0_, comment0_.deleter_id as deleter11_15_0_, comment0_.journal_entry_id as journal12_15_0_, comment0_.language_id as languag13_15_0_, comment0_.lastEditedOn as lastEdit8_15_0_, comment0_.likeTotal as likeTota9_15_0_, comment0_.owning_comment_id as owning_14_15_0_ from comments comment0_ where comment0_.id=?
2020-09-19 17:07:35.562 DEBUG 14544 --- [nio-8080-exec-2] org.hibernate.SQL                        : delete from comments where id=?

我正在构建一个使用 Amazon 数据库服务的 Web 应用程序,因此该应用程序发出的每个请求都需要额外付费。为什么 spring 在删除之前先检索对象,有什么方法可以阻止它这样做?

标签: springspring-bootspring-data-jpa

解决方案


正如@Naim 指出的那样,休眠首先检索对象,因为可能存在拦截器。JpaRepository这是我使用实现存储库直接对数据库进行删除查询的解决方案。

@Modifying
@Transactional
@Query(nativeQuery = true, value = "DELETE FROM comments WHERE id = :id")
void deleteById(@Param("id") Long id); 

自定义方法deleteById不需要先获取实体。


推荐阅读