hibernate caching

2017-05-03 Thread Jason Reilly
Hi all, I tried to add caching to my persistence layer. I added the following to my persistence.xml: I added the necessary dependencies (test cases all run great), but this configuration doesn't seem to deploy nicely to Karaf (4.1.1). The exception thrown

Re: hibernate caching

2017-05-03 Thread Jason Reilly
Quick update Adding the following to my dao-api/pom.xml file: org.hibernate.proxy,org.ehcache.jsr107,org.hibernate.cache.jcache,javassist.util.proxy,* I get the following at startup: 2017-05-03 15:21:08,067 | ERROR | pache.cxf.osgi]) | configadmin | 5 - org.apache.f

Re: hibernate caching

2017-05-03 Thread Jason Reilly
Another quick update... I removed the jsr107 ehcache option & tried out the hibernate ehcache factory. So, the persistence.xml file has the following: And the dao-api/pom.xml had the following Import-Package: org.hibernate.proxy,org.hibernate.cache.ehcache,javassist.util.proxy,* This w