In my Grails app, I have two domain classes with a one-to-many relationship, e.g.
class Parent
static hasMany = [children: Child]
}
class Child {
Integer index
static belongsTo = [parent: Parent]
}
I would like index to record the relative order in which the children were created, such that the first child of a parent will have index 1, the next will have 2, etc. The indices don't have to be consecutive, because a child could be deleted, but they should always reflect the relative order of creation.
I considered doing something like the following to set the index property
class Child {
Integer index
static belongsTo = [parent: Parent]
def beforeValidate() {
def maxIndex = Child.createCriteria().get {
projections {
max('index')
}
eq('parent', parent)
}
this.index = maxIndex + 1 ?: 1
}
}
But of course this doesn't work because it will assign the same index to two transient Child instances. What is the simplest way to maintain this index property?
FWIW, I'm not too concerned about preventing any other code from setting index but if there is some way to do that, it'd be a bonus.