Just downloaded and began testing our application with the new release, and one of the configuration items that caught me up for a bit was in how the cache class is specified in the hibernate.cfg.xml file.
In the HB 3.6.x world, I had specified the use of EhCache as follows:
Code:
<property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
But I've now learned that in 4.x, that becomes:
Code:
<property name="cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</property>
Not sure if this is the right place for these sorts of comments - please point me in a better direction if so.
-jason