A one-to-many association is causing Hibernate to throw:
{code:java} INFO: HHH000327: Error performing load command : org.hibernate.property.access.spi.PropertyAccessException: {code}
when loading an entity via Session.get(domainClass, identifier), under the following conditions:
* the association collection is annotated with @fetch(FetchMode.JOIN) * the association's join column is referencing a non-primary key of the owning entity * the association's join column value is referencing a non-existing record of the associated table (the "many" side). |
|