gpt4 book ai didi

java - JpaRepository是否有patch方法来更新特定对象

转载 作者:行者123 更新时间:2023-12-02 00:54:14 27 4
gpt4 key购买 nike

我想知道 JpaRepository 是否有一种方法可以仅更新对象的特定值,而不从数据库获取整个对象。这是我的代码,用于进一步解释它:

Controller

@PatchMapping("/{labelKeyUuid}")
@ApiOperation("Update the current version of an existing label key")
fun updateCurrentVersion(@PathVariable labelKeyUuid: UUID,
@RequestBody labelValueUuidRequest: LabelValueUuidRequest) {
val labelValue = labelValueService.findByUuid(labelValueUuidRequest.uuid)
?: throw ResponseStatusException(HttpStatus.NOT_FOUND, "Label value with uuid '\'${labelValueUuidRequest.uuid}\'' not found")
return labelKeyService.updateCurrentVersion(labelKeyUuid, labelValue)
}

服务

fun findByUuid(uuid: UUID) : LabelValueEntity? {
return labelValueRepository.findByIdOrNull(uuid)
}

fun updateCurrentVersion(labelKeyUuid: UUID, labelValue: LabelValueEntity) {
labelKeyRepository.save(labelValue, labelKeyUuid)
}

存储库

@Repository
interface LabelKeyRepository : JpaRepository<LabelKeyEntity, UUID>

JpaRepository 有 save(entity) 方法。我知道我可以通过从数据库获取对象并使用新对象设置 labelValue 并将其保存到数据库来解决此问题。有没有更快的方法来做到这一点?

最佳答案

如果不需要访问对象的当前状态,可以使用entityManager.getReference()方法。与 entityManager.find() 相反,此方法不会调用 select 语句。

entityManager.getReference()JPARepository 上作为 getOne() 方法公开。

请注意,这两种方法返回的对象都具有自动脏检查,您应该在同一事务中调用 find()getReference() 以及后续修改,并且更改将自动保留。仅在存储库上使用 save() 来保存新实体或附加分离的实体。

另请阅读: When to use EntityManager.find() vs EntityManager.getReference() with JPA

关于java - JpaRepository是否有patch方法来更新特定对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57833864/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com