Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have discovered a strange case when trying to replicate a Hibernate 2nd level cache key upon object update.

The cache key structure is like this:

cacheKey = {org.hibernate.cache.CacheKey}
|- key = {my.own.serializable.class}
|- type = {org.hibernate.type.ComponentType}
| |- typeScope = {org.hibernate.type.TypeFactory$TypeScopeImpl}
| | |- factory = {org.hibernate.impl.SessionFactoryImpl}
| |- propertyNames = {...}
| |- propertyTypes = {...}
| |- propertyNullability = {...}
| |- propertySpan = 2
| |- cascade = {...}
| |- joinedFetch = {...}
| |- isKey = true
| |- tuplizerMapping = {...}
|- entityOrRoleName = {java.lang.String} "my.Entity"
|- entityMode = {org.hibernate.EntityMode}
|- hashCode = 588688

The problem I can see here is that cacheKey.type.typeScope has a reference to the local o.h.i.SessionFactoryImpl which gets replicated over. Should typeScope (or one of its ancestors) not be declared as transient?

Looking at the o.h.t.ComponentType class I can see that typeScope attribute is not used at all in this class but only set in the constructor and kept in. Is this a Hibernate bug?

NOTE: o.h.t.ComponentType is used when the entity has a composite key and uses special identifier object for it.

We use Hibernate v3.6.7 and Ehcache v2.4.4. This has also been posted on the Hibernate Users forum.

EDIT: I opened HHH-6880, without much success so far.

I have also posted a similar message to the Ehcache users mailing list and Alex@Terracotta suggested this was a genuine issue, likely introduced by HHH-5182 in version 3.6 and also affecting things like Ehcache serialization to disk. Here's a link to hibernate-dev thread.

share|improve this question

1 Answer

Looks like the Hibernate team feels this has been resolved in 4.0.1, by fixing HHH-6822.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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