Enabling Hibernate second-level cache with JPA on JBoss 4.2 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T21:34:02Z http://stackoverflow.com/feeds/question/53562 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/53562/enabling-hibernate-second-level-cache-with-jpa-on-jboss-4-2 4 Enabling Hibernate second-level cache with JPA on JBoss 4.2 Peter Hilton 2008-09-10T07:32:38Z 2008-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>&lt;property name="hibernate.cache.use_second_level_cache" value="true" /&gt; &lt;property name="hibernate.cache.provider_class" value="org.hibernate.cache.HashtableCacheProvider" /&gt; </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#53992 1 Answer by Tim Howland for Enabling Hibernate second-level cache with JPA on JBoss 4.2 Tim Howland 2008-09-10T13:10:03Z 2008-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#54415 1 Answer by Peter Hilton for Enabling Hibernate second-level cache with JPA on JBoss 4.2 Peter Hilton 2008-09-10T15:32:20Z 2008-09-10T15:32:20Z <p>Follow-up: in the end, after adding annotations, I have it working with EhCache, i.e.</p> <pre><code>&lt;property name="hibernate.cache.provider_class" value="net.sf.ehcache.hibernate.EhCacheProvider" /&gt; </code></pre>