gpt4 book ai didi

hibernate - 清除特定域类的 hibernate 缓存

转载 作者:行者123 更新时间:2023-12-03 07:59:56 25 4
gpt4 key购买 nike

想象一下我有以下类(class):

class Test {
String name
static mapping = {
cache true
version false
}

目标是在数据库级别使用 native sql插入行,以使hibernate无法识别这些更改。我该如何通知有关此新行的信息?

是否有类似-> Test.clearCache的东西?

最佳答案

尽管这是一种过时的方法,但它更短并且仍然有效。

def sessionFactory // inject Hibernate sessionFactory
sessionFactory.evict(clazz, id)
// or evict all class instances:
sessionFactory.evict(clazz)

文档为 here,请通过 Cache查看最新信息。

关于hibernate - 清除特定域类的 hibernate 缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6625515/

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