gpt4 book ai didi

grails - 如何从特质 “inherit”约束?

转载 作者:行者123 更新时间:2023-12-02 15:41:27 25 4
gpt4 key购买 nike

我有一个特征和以下域类:

trait Named {

String name

static constraints = {
name blank:false, unique:true
}
}

@Entity
class Person implements Named {

String fullName

static constraints = {
fullName nullable:true
}

}

@Entity
class Category implements Named {

}

在此设置中,Named.constraints对于 Category正常工作,但对于 Person忽略。

如何将来自特征的约束包括在实现域类的 constraints块中?

最佳答案

How can I include the constrains from a trait in a constraints block of an implementing domain class?



该框架不支持它。

关于grails - 如何从特质 “inherit”约束?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57572380/

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