EhCache
notes for spring boot 1.X + EhCache 3.0 Spring 4
create CacheConfig.jave for the annotation @EnableCaching, @Configuration
spring-bootstrap.xml add xmlns:cache to beans. add <cache:annotation-driven /> for creating beans.
application.properities add one attribute spring.cache.jcache.config=classpath:ehcache.xml
add ehcache.xml: in the xml, eg:
<resources> is needed for creating CacheManager, also <key-type>, <value-type> are not necessary.
jsr107 works for Spring 4 not Spring 3.
Last updated
Was this helpful?