Reputation: 10613
I'm working on a legacy Grails 2.3.11
application. When I annotate a command class with grails.validation.Validateable
, it seems unable to find it. However @Validatable
works fine on another Grails 2.5.6
application. Was the annotation introduced after 2.3.11?
Upvotes: 0
Views: 588
Reputation: 27220
Was the annotation introduced after 2.3.11?
No. It is included in 2.3.11. See https://github.com/grails/grails-core/blob/v2.3.11/grails-plugin-validation/src/main/groovy/grails/validation/Validateable.java.
Upvotes: 1