(I posted an abbreviated form of this question over at the uninhabited, ghost town, scorched-earth, spam-infested, utterly useless Hibernate "forums", but didn't waste too much energy on it over there.)
I am trying to figure out why—in Hibernate 3.5.0-Final—even if you use the hibernate-jpamodelgen metamodel generator you must take great care that the following property in your persistence.xml is not present:
<property name="hibernate.ejb.metamodel.generation" value="disabled"/>
(We found during other tests that in certain cases we used to need to specify this property as it is listed above.)
To put it another way, even though you've already generated your metamodel, you must make sure that Hibernate still will try to generate it again. Huh?
Rather than just blindly specifying or eliminating properties, I would like to understand how these two tools interact. If I've already generated a metamodel, then surely I can disable further metamodel generation? What is the relationship here?