We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
class DomainA { IEmbeddedDomain embedded static mapper = { embedded type: CustomJsonType } static constraints = { embedded cascade: true // <--- Not works } }
@Validateable class DomainB implements IEmbeddedDomain { String someData static constraints = { someData nullable: false } }
def a = new DomainA( embedded: new DomainB() ) a.validate() // returns true
(issue reported 10/07/2015 by @gtors)
The text was updated successfully, but these errors were encountered:
While this may not be the cause of the problem @Validateable isn't valid in Grails 3, as we have the Validateable trait...
Sorry, something went wrong.
Merge pull request #1 from virtualdogbert/master
0531baf
Grails 3.3 from virtualdogbert
No branches or pull requests
(issue reported 10/07/2015 by @gtors)
The text was updated successfully, but these errors were encountered: