Same configuration was working earlier in hibernate 3.
Instead of
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
hibernate.cache.region.factory_class=org.hibernate.cache.impl.bridge.RegionFactoryCacheProviderBridge
I am using the below in in hibernate 5
hibernate.cache.region.factory_class=org.hibernate.cache.infinispan.InfinispanRegionFactory
I was expecting it to be smooth transition, however looks like it isn’t.
Is there any specific change which i have to incorporate with newer hibernate ?
Any bean initialization i have to make to get it working ?