问题
I took the old configuration:
grails.gorm.default.constraints = {
'*' (nullable: true, blank: true)
}
... and put it in the application.groovy
.
Luckily it worked as expected.
How would one define this in application.yml
? I tried:
grails:
gorm:
default:
constraints:
'*' (nullable: true, blank: true)
but this gives errors on start.
回答1:
application.groovy
is the place to do that. Groovy code in a .yml
config file is invalid and not supported.
来源:https://stackoverflow.com/questions/29518459/grails-3-0-1-how-to-configure-grails-gorm-default-constraints-in-application-y