I need to write Domain class constraint in Grails which says that one integer field must be greater or equal than the other.

When I write the code like this:

class MyDomain {

 String title
 int valueMin = 1
 int valueMax = 1

 static constraints = {
  valueMin(min:1)
  valueMax(min:valueMin)
 }
}

I'm getting error:

Caused by: groovy.lang.MissingPropertyException: No such property: valueMin for class: MyDomain

Any idea, please?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 4 down vote accepted

http://grails.org/doc/latest/ref/Constraints/validator.html

This should more or less work (not tested)

class MyDomain {

 String title
 int valueMin = 1
 int valueMax = 1

 static constraints = {
  valueMin(min:1)
  valueMax(validator:{
    value, reference ->
    return value > reference.valueMin
  })
 }
}
link|improve this answer
Thanks. This is exactly the solution that I already found. – Pavel P Jan 10 '10 at 11:02
feedback

This wont work, because the constraints are a static block of code which will only have access to static variables.

So, you could write your own customized cosntraint if you want: take a look at this link: http://grails.org/doc/latest/guide/single.html#7. Validation

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.