Enabling Hibernate second-level cache with JPA on JBoss 4.2 - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T21:34:02Zhttp://stackoverflow.com/feeds/question/53562http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/53562/enabling-hibernate-second-level-cache-with-jpa-on-jboss-4-24Enabling Hibernate second-level cache with JPA on JBoss 4.2Peter Hilton2008-09-10T07:32:38Z2008-12-30T14:23:09Z
<p>What are the steps required to enable Hibernate's second-level cache, when using the Java Persistence API (annotated entities)? How do I check that it's working? I'm using JBoss 4.2.2.GA.</p>
<p>From the Hibernate documentation, it seems that I need to enable the cache and specify a cache provider in <em>persistence.xml</em>, like:</p>
<pre><code><property name="hibernate.cache.use_second_level_cache"
value="true" />
<property name="hibernate.cache.provider_class"
value="org.hibernate.cache.HashtableCacheProvider" />
</code></pre>
<p>What else is required? Do I need to add <em>@Cache</em> annotations to my JPA entities?</p>
<p>How can I tell if the cache is working? I have tried accessing cache statistics after running a Query, but <em>Statistics.getSecondLevelCacheStatistics</em> returns null, perhaps because I don't know what 'region' name to use.</p>
http://stackoverflow.com/questions/53562/enabling-hibernate-second-level-cache-with-jpa-on-jboss-4-2/53992#539921Answer by Tim Howland for Enabling Hibernate second-level cache with JPA on JBoss 4.2Tim Howland2008-09-10T13:10:03Z2008-09-10T13:10:03Z<p>I believe you need to add the cache annotations to tell hibernate how to use the second-level cache (read-only, read-write, etc). This was the case in my app (using spring / traditional hibernate and ehcache, so your mileage may vary). Once the caches were indicated, I started seeing messages that they were in use from hibernate.</p>
http://stackoverflow.com/questions/53562/enabling-hibernate-second-level-cache-with-jpa-on-jboss-4-2/54415#544151Answer by Peter Hilton for Enabling Hibernate second-level cache with JPA on JBoss 4.2Peter Hilton2008-09-10T15:32:20Z2008-09-10T15:32:20Z<p>Follow-up: in the end, after adding annotations, I have it working with EhCache, i.e.</p>
<pre><code><property name="hibernate.cache.provider_class"
value="net.sf.ehcache.hibernate.EhCacheProvider" />
</code></pre>