java.lang.NoClassDefFoundError: org/hibernate/cache/EntityRegion configuring EHCache

前端 未结 4 758
[愿得一人]
[愿得一人] 2020-12-16 11:21

I\'m trying to add ehcache (v2.6.0) to my Hibernate 4.1.5.SP1 project, but having some configuration issues. Specifically, I\'m getting a ja

4条回答
  •  [愿得一人]
    2020-12-16 11:52

    Configuration.setProperty("hibernate.cache.region.factory_class", 
                         "net.sf.ehcache.hibernate.EhCacheRegionFactory")
    

    For Hibernate 4, use

    org.hibernate.cache.ehcache.EhCacheRegionFactory instead of net.sf.ehcache.hibernate.EhCacheRegionFactory
    

    Hibernate Configuration Article

提交回复
热议问题