I have a grails domain class with an Integer property such as:
class MyDomainClass {
Integer i
static constraints = {
i(min: 0, max 5,
validator: {
// Something that fails when type conversion was used.
}
}
}
If i is set to a non-integer, e.g., 3.1 it will set i to 3 due to type conversion. But what I want to do is to either disable type conversion for i, or preferably fail validation when was originally set via type conversion.
Note: I want this to work both via explicit setting of the value, and via the default properties constructor.
Can this be done?