3

我想创建一个可以在我的 Domain 类中使用的自定义简单约束(如显示和可编辑)。是否可以扩展 ConstrainedProperty 类?

class City {
    String title
    BigDecimal latitude
    BigDecimal longitude
    Country country

    static constraints = {
        title       ( blank: false, customConstraint: true )  // filter can be also be applied as attributes: [customConstraint: true]
    }
}

有熟悉这个案子的吗?

4

1 回答 1

3

要创建自己的约束:

grails 的大小约束实现为例。

于 2013-02-06T16:55:25.713 回答