我想创建一个可以在我的 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]
}
}
有熟悉这个案子的吗?