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

link|improve this question

75% accept rate
feedback

4 Answers

This is really going to depend most on what your parameters are and how you're handling creation or maintenance of the GORM objects, not your actual object graph.

link|improve this answer
feedback

Agree with @John. One of the common solutions is, you should be saving the object as

a.addToB(b)
a.save()

Hope it helps.

link|improve this answer
feedback
up vote 0 down vote accepted

Solved.

There was a different problem. I wasn't persisting anything. There appeared some inconsistences between serialized data in the flow and persisted data in the database. So a select query caused this exception.

link|improve this answer
feedback

This problem is related to the ORM (I guess you are using hibernate below). The problem will be solved if you configure the cascade property of the mapped attributes.

I don't know how to configure it in grails, but this doc of hibernate should help you to understand where the problem is: http://docs.jboss.org/hibernate/stable/entitymanager/reference/en/html/objectstate.html#objectstate-transitive

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.