Alexander Suraphel
Alexander Suraphel

Reputation: 10613

Grails: unable to resolve class Validatable , unable to find class for annotation

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

Answers (1)

Jeff Scott Brown
Jeff Scott Brown

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

Related Questions