Working through upgrading from grails 2.2.5 to 3.1 and we have an interesting error. How do we resolve this?
class grails.validation.Validateable is not an annotation in @grails.validation.Validateable
@ line 17, column 1.
@Validateable
^
The answer is that in Grails 2.x the 'Validateable' was applied using an annotation
@Validateable
class ApiCatalogCommand {}
In grails 3.x, it is now an interface:
class ApiCatalogCommand implements Validateable {}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With