What are the best Cache practices in ehcache or spring cache for spring MVC?

20,256

Disclaimer : I am a Terracotta / Software AG employee, the maintainers of Ehcache

Ehcache is a JVM caching library, famous for being used as the default 2nd level cache for the Hibernate ORM

Spring cache was introduced in Spring 3.1, and brought annotations such as @CachePut to define uses of caches in a Spring application; by default Spring cache uses a plain Map, but you can configure it to use any popular caching framework, including Ehcache

Since Spring 4.1, Spring cache supports JSR-107, the standard for caching on the JVM.

What that means, is that you can add JSR-107 caching annotations, and then choose your caching library (ehcache 2 or 3 / guava / caffeine / etc.) : you're not tied to any caching vendor, even not tied to Spring cache annotations !

There's this nice blog post explaining the parallel between Spring cache annotations and JSR-107 annotations and if you choose to use Ehcache3 in your spring boot application, there's another interesting blog post explaining you how to integrate it in your app

Share:
20,256
Delli Kilari
Author by

Delli Kilari

Associate Technical Architect in Java/J2ee.

Updated on July 16, 2022

Comments

  • Delli Kilari
    Delli Kilari almost 2 years

    Planning to implement cache mechanism for static data in spring web based application, can any one explain which is the best and how it works?

    • EhCache
    • Spring Cache
  • Ben Manes
    Ben Manes over 7 years
    One quirk with the JSR annotations is that there isn't protection from the thundering herd problem. That functionality requires using a loader so that the CacheResult method body isn't invoked. It gets really ugly.
  • Delli Kilari
    Delli Kilari over 7 years
    Thanks Lot Anthony, My doubt is that Do i need to user en-cache and spring cache ?
  • Anthony Dahanne
    Anthony Dahanne over 7 years
    @DelliKilari, I suggest you enable Spring cache in your application, use Jcache / jsr107 annotations in your code and configure ehcache3 or any other jsr107 implementations as your caching implementation (see the links in my answer)
  • Delli Kilari
    Delli Kilari over 7 years
    Thank you so much for your time to answering my doubts.
  • Jajikanth pydimarla
    Jajikanth pydimarla over 6 years
    @AnthonyDahanne : Can you please give the best and quick ehcache.xml default cache configurations when implementing ehcache with hibernate 2nd level cache?
  • Anthony Dahanne
    Anthony Dahanne over 6 years
  • Iwo Kucharski
    Iwo Kucharski almost 4 years
    I see it's an 3 years old answer but on ehcache site and example code there is still ehcache.xml. Is it possible to totally get rid off xml file and do only java configuration for ehcache 3.8 and spring boot 2.1 (or above)?