我想创建一个自定义的简单约束(如显示和可编辑),我可以在我的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]
}
}
有人熟悉这个案子吗?
答案 0 :(得分:3)