gpt4 book ai didi

jdbc - Micronaut 数据 jdbc : saving an existing entity creates a new entity instead of updating the existing one

转载 作者:行者123 更新时间:2023-12-01 04:44:12 24 4
gpt4 key购买 nike

我有以下 Kotlin 代码:

val book = bookRepository
.findById(1)
.orElseThrow { DoesNotExistException("Book with ID 1 does not exist") }

bookRepository.save(book)

我希望这段代码再次保存同一个实体。但是,它实际上通过复制所有字段并更改 ID 生成了一个新实体。

实体本身在这里:

@Entity
data class Book(@Id
@GeneratedValue
var id: Long?,
val status: Book.Status
)

我正在使用带有 JDBC 的 micronaut-data(以前称为 Micronaut Predator),我没有使用 JPA。

如何在不创建新实体的情况下更新现有实体?

最佳答案

这就是它设计的方式。来自文档:https://micronaut-projects.github.io/micronaut-data/snapshot/guide/#jdbcQuickStart ,向下滚动到“更新实例(更新)”部分:

With Micronaut Data JDBC, you must manually implement an update method since the JDBC implementation doesn’t include any dirty checking or persistence session notion. So you have to define explicit update methods for updates in your repository.

关于jdbc - Micronaut 数据 jdbc : saving an existing entity creates a new entity instead of updating the existing one,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57362875/

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