Hi,
I'm getting "org.springframework.dao.DataIntegrityViolationException: not-null property references a null or transient value: A.b" exception on web flow in grails 1.1.2. there is
class B {
...
static belongsTo = [a:A]
...
}
and
class A {
...
static hasMany = [b:B]
...
}
Does anyone know what is wrong? Thanks Tom