gpt4 book ai didi

java - grails - 域类中的继承 - 将列继承到基表中

转载 作者:搜寻专家 更新时间:2023-11-01 01:45:39 25 4
gpt4 key购买 nike

我有一个记录类:

class Record {
Date dateCreated
Date lastUpdated
def beforeInsert() {
dateCreated = new Date()
}
def beforeUpdate() {
lastUpdated = new Date()
}
static mapping = { tablePerHierarchy false }
}

并且这个类被其他几个域类继承——例如:

class User extends Record{
String userName
String password
String email
}

我的问题是:有没有办法将 Record 表的列嵌入到扩展它的表中?

最佳答案

您可以定义tablePerClasstablePerHierarchy 策略。 See documentation here .

因此,接下来,您应该使用的代码:

static mapping = {
tablePerHierarchy true
}

关于java - grails - 域类中的继承 - 将列继承到基表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11527174/

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