Hibernate second level cache with Spring

前端 未结 3 1563
囚心锁ツ
囚心锁ツ 2020-12-08 03:23

I\'m using Spring + JPA + Hibernate. I\'m trying to enable Hibernate\'s second level cache. In my Spring\'s applicationContext.xml I have:

3条回答
  •  一个人的身影
    2020-12-08 04:12

    Try this:

    true
    4
    true
    true
    net.sf.ehcache.hibernate.EhCacheRegionFactory
    

    And if you are using Maven add this to your POM file:

    
      net.sf.ehcache
      ehcache-core
      2.3.0
    
    

    Or download the latest jar from http://ehcache.org/

提交回复
热议问题