3

Domain クラス内で使用できるカスタムの単純な制約 (display や​​ editable など) を作成したいと考えています。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