3.0.5
Everything works fine, but I recently decided to turn on the JMX Statistics out of curiousity. I found that any time I initialize a collection, the transaction count is increased but the SuccessfulTransactionCount is not.
Can anyone shed some light as to why?
Example:
Code:
Hibernate.initialize(adSlot.getAdSlotAds());
<list name="adSlotAds" table="AdSlotAds" inverse="true">
<key column="adSlotId"/>
<list-index column="sequence"/>
<one-to-many class="com.freeadcommunity.database.model.AdSlotAd"/>
</list>