I have an application that is running Hibernate 4.1.7 and am using ehcache as level 2 cache. I understand that as of Hibernate 4 I need to use the ehcache jars that comes bundled with hibernate, but these jars are quite old.
The current latest version of ehcache is 2.6.3, but the version that comes with with hibernate 4.1.7 is 2.4.3. The problem is that hibernate does not come bundled with the ehcache-terracotta jar and my terracotta server comes bundled with ehcache-hibernate 2.6.2 jars since it is the latest working version of terracotta. I am struggling to get my application to connect to my terracotta server and assume it is because I have a mismatch in versions.
How do I get my ehcache used by hibernate (version 2.4.3) to connect with my terracotta server which caters for ehcache version 2.6.2?
Please help