
Here DealerID can be nullable and CarID, TyreID are unqiue.
The problem I have noticed is: Grails ignores nulls in unique constraints.
|
|
I don't think the question is clear, but this may be a bug in Grails: http://jira.codehaus.org/browse/GRAILS-5101 |
|||||||
|
static constraints = {
CarID TyreID DealerID 01 02 NULL Existing row 01 02 95 New row is rejected This is because TyreID is not unique - it conflicts with an existing CarID. We want the unique constraint to apply to the scope of all specified fields As far as I know, this problem still exists with the latest version of Grails (1.3.7) This is my workaroundIn your domain class, write a custom validator for the field that looks for an existing record using CriteriaBuilder:
class MyClass {
...
static constraints = {
...
carID( validator: { Integer carID, MyClass thisInstance ->
def existingRecord = MyClass.withCriteria(uniqueResult:true){
ne('id', thisInstance.id)
if (thisInstance.tyreID) {
eq('tyreID', thisInstance.tyreID)
}
else {
isNull('tyreID')
}
if (thisInstance.dealerID) {
eq('dealerID', thisInstance.dealerID)
}
else {
isNull('dealerID')
}
})
if (existingRecord) {
return ['myClass.duplicate', existingRecord.id]
}
else {
return true
}
}
)
and in your message properties, you can alert the user that this record conflicts with a specific record:
message.properties
...
myClass.duplicate = {0} is identical to existing record {3}
It's a hacky solution, requires a potentially unnecessary database hit, and looks ugly. I don't like it, but it works. |
|||
|
|
|
I know this is way late in the game, but to make the combinations unique, I'd present the constraints as such:
This should ensure that even if Grails ignores the unique constraint on carID due to dealerID being null, you won't get a combination of carID and tyreID that clashes. At least that's how I think it works. |
|||
|
|