gpt4 book ai didi

grails - Grails save()方法错误

转载 作者:行者123 更新时间:2023-12-02 14:42:24 26 4
gpt4 key购买 nike

例如,我在数据库中保存了名为John和id 1的实体人,然后:

def person = Person.get(1) 
person.name = 'Maria'
person.save()

//after that name still will be John
//but if I save one more time than name be Maria

其他信息是我的域具有内部服务,以及与此服务一起使用的方法。
我现在不存在什么问题,也许有人已经遇到了这种情况。

最佳答案

目前尚未刷新,更改在内存中保留了一段时间。如果此时需要强制Grails完全更新数据库,请添加flush: true参数:

person.save(flush: true)

关于grails - Grails save()方法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27795073/

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