I'm trying to decide whether to switch from having Hibernate
sprinkled all over to using JPA2.0
and thus be provider portable.
1.Does JPA2.0
support custom user-types?
2.I'm on the verge of implementing Terracotta
as a second-level cache to Hibernate
with its clustering abilities mainly in mind. I would imagine, but I don't actually know, that JPA2.0
also defines a spec for second-level cache providers. If I'm right, does Terracotta
implement it? (If someone could point me to a getting started with Terracotta
and JPA
I'd appreciate it).
Thanks in advance,
Ittai
Nothing beyond
@Embedded
and@Embeddable
(already in JPA 1.0). Depending on the complexity of your needs, they might do the job).JPA 2.0 defines methods on the
EntityManager
to access the second level cache that is maintained by the persistence provider, aCacheable
annotation, some other things. But the way to plug a cache on your JPA provider is provider specific. So no, JPA doesn't define a spec for L2 cache providers. And if you want to use Terracota as the L2 cache provider with Hibernate as JPA 2.0 implementation, look at the Hibernate integration documentation.References