Grails 2.0.1
Here are stripped down simplified versions of the Domains:
class Attribute {
String name
static hasMany = [attributeParameters: AttributeParameter]
}
class AttributeParameter {
String name
Attribute attributeReference
static belongsTo = [attribute:Attribute]
}
When I look at the schema in the database, there are 2 separate FKs in AttributeParameter; 1 for the attribute_reference_id, and one for attribute_id. When I save the domains populated with all their data I am getting 0 errors on both Attribute and AttributeParameter, however, the attribute_reference_id column never gets populated. Debugging, I can see the attributeReference object and it has an ID, even after the save call(s). Grails is not throwing any exceptions (at least none that are being displayed on the console).
Stranger still is that if I go to the database and add the ID of an attribute into the attribute_reference_id column, GORM loads it perfectly. Hitting save again, it goes back to null even though debugging shows the object present.
Really at a loss as to why the data isn't persisting.