-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: Inverse, lazy, noop collection handling.
PostPosted: Thu Jan 07, 2016 1:03 pm 
Newbie

Joined: Thu Jan 07, 2016 12:30 pm
Posts: 2
I have an application that uses Hibernate mapping xml files to define the metadata of our entities. I handle the persistence of related entities with join tables, referencing foreign keys of the associated entities. Most of the related entities are mapped using inverse, lazy, noop, one-to-many bag definitions. With some of the latest Hibernate core Java releases, I have started running into issues with our entity's transient collections.

Example mappings:
<class name="Invoice" table="Invoice">
<cache usage="read-write" />
<id name="id" column="InvoiceID" type="int">
<generator class="identity" />
</id>
<many-to-one lazy="false" name="invoiceType" column="InvoiceTypeID" class="InvoiceType" />
<many-to-one lazy="false" name="businessClient" column="ClientID" class="Client" />
<property name="invoiceDate" column="InvoiceDate" type="date" />
<property name="totalAmount" column="TotalAmount" type="big_decimal" precision="19" scale="2" />
<property name="paidAmount" column="PaidAmount" type="big_decimal" precision="19" scale="2" />
<property name="voidReason" column="VoidReason" />
<property name="documentFileCount" column="DocumentFileCount" />
<property name="createUserId" column="CreateUserID" update="false" />
<property name="createDate" column="CreateDate" update="false" />
<property name="updateUserId" column="UpdateUserID" />
<property name="updateDate" column="UpdateDate" />
<property name="rv" column="rv" insert="false" update="false" />
<bag lazy="true" name="detailList" access="noop" inverse="true">
<key column="InvoiceID" />
<one-to-many class="InvoiceDetail" />
</bag>
</class>

<class name="InvoiceDetail" table="InvoiceDetail">
<cache usage="read-write" />
<id name="id" column="InvoiceDetailID" type="int">
<generator class="identity" />
</id>
<many-to-one lazy="false" name="invoice" column="InvoiceID" class="Invoice" />
<property name="billingAmount" column="BillingAmount" type="big_decimal" precision="19" scale="2" />
<property name="note" column="InvoiceDetailNote" />
<property name="createUserId" column="CreateUserID" update="false" />
<property name="createDate" column="CreateDate" update="false" />
<property name="updateUserId" column="UpdateUserID" />
<property name="updateDate" column="UpdateDate" />
<property name="rv" column="rv" insert="false" update="false" />
</class>

I have started to encounter issues with dirty checking and reassociation of detached collections for these bag references. Both issues started with Hibernate 4.3.11 and 5.0.3 and later (did not test Hibernate 5 releases prior to 5.0.3).
- Dirty checking - have created a ticket for this (https://hibernate.atlassian.net/browse/HHH-10404) because for versioned entities, the entity gets updated due to these lazy, noop bags being identified as dirty. The updates to the versioned entity only updates the version column, which causes issues because it unnecessarily accesses the DB and establishes a lock on the table causing intermittent deadlocks for some long running transactions.
- Reassociation of bag failures - upon deleting entities we do a lookup within transaction to clean up/validate related associations. The original entity is detached because it was loaded in a previous transaction. The lazy, noop collection is causing the exception with message "could not reassociate uninitialized transient collection."

If I am understanding the noop access method and non-cascading, lazy bag definition, shouldn't these collections be treated as transient and excluded from all dirty checking and reassociation?

I have done some digging and it appears that both of the above issues started after applying https://hibernate.atlassian.net/browse/HHH-9777. Was an edge case missed with this ticket?


Top
 Profile  
 
 Post subject: Re: Inverse, lazy, noop collection handling.
PostPosted: Fri Jan 08, 2016 12:32 am 
Hibernate Team
Hibernate Team

Joined: Thu Sep 11, 2014 2:50 am
Posts: 1628
Location: Romania
But if the bag doesn't have any cascade and you don't want it to be verified for dirtiness, I wonder why don't you replace it with a query instead?

In a bidirectional association, you have to synchronize both ends anyway and the benefit of the parent side is that it can cascade state transitions to the child entities.
If it's just for caching, then you can also use the query cache to hold the child entity identifiers.


Top
 Profile  
 
 Post subject: Re: Inverse, lazy, noop collection handling.
PostPosted: Fri Jan 08, 2016 2:48 pm 
Newbie

Joined: Thu Jan 07, 2016 12:30 pm
Posts: 2
We want to avoid any SQL within our application. We use the mapping definition for the bag to take advantage of the Hibernate Criteria functionality to query for the bags when we desire. Using Criteria allows use to use a generic strategy for reading the entity data from the database in a DB agnostic fashion. In most use cases of our application, the fetching of an entity's bag(s) is unnecessary because they are not needed in processing. There are cases, however, when we do want the bags returned. In this case, we construct a Hibernate Criteria so the necessary associated data can be loaded and returned. We have functionality in our application that maps requested attributes of our Java DTOs to a Criteria for use in fetching data from Hibernate in our DAOs.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.