up vote 3 down vote favorite
2
share [g+] share [fb]

Assume I have a Grails domain object like this:

class Todo {

    String name
    String priority
    String status

    static constraints = {
        name(blank: false)
        priority()
    }    
}

What are the default constraints on a field if:

  • It's listed in the constraints block without any actual contraints, e.g. priority
  • It isn't listed in the constraints block, e.g. status

Thanks, Don

link|improve this question

46% accept rate
feedback

2 Answers

up vote 7 down vote accepted

Yep, Siegfried is right, nullable: false is the only thing that gets set by default. You can take a look at the domain class artefact and interrogate the constrained properties in the console:

grailsApplication.getDomainClass("Todo").constrainedProperties.each { propName, constraints  ->
    println "$propName : ${constraints.appliedConstraints.name}"
}

Prints:

status : [nullable]
priority : [nullable]
name : [blank, nullable]
link|improve this answer
feedback

As far as I know it is only nullable: false in both cases.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.