我正在上课:
class Account{
static mapping = {
id generator: "uuid2"
}
}
我尝试添加帐户实例并手动设置其 ID:
new Account(id: accountId).save(flush:true)
但刷新后,保存对象的 id 正在改变。我想保留自动生成 ID 的默认引擎,但我还想添加功能以添加具有指定ID 的对象。我怎样才能获得它?Grails 2.4.5 在这里。
来自堆栈跟踪的错误:
消息:com.example.Account 实例的标识符已从 x... 更改为 y...