About 20,400 results
Open links in new tab
  1. Spring boot 3 ehcache config setup issue - Stack Overflow

    Jul 24, 2023 · 7 I'm trying to setup ehcache in my Spring boot application. I have the following ehcache.xml and configuration file:

  2. How to implement second-level caching in Spring Boot 3 using …

    Mar 13, 2023 · I've been trying to find a way to implement second-level caching using Spring Boot 3 + Ehcache 3 + Hibernate 6 but it's been an unsuccessful ride so far. I tried looking it up on …

  3. Spring Framework 5 and EhCache 3.5 - Stack Overflow

    Spring 5 reference guide does't mention EHCache usage, Spring 4 reference guide states: "Ehcache 3.x is fully JSR-107 compliant and no dedicated support is required for it." So I …

  4. Spring Boot + JPA2 + Hibernate - enable second level cache

    Jul 23, 2015 · I'm using Spring Boot 1.2.5 with JPA2 to annotate entities (and hibernate as underlaying JPA implementation). I wanted to use second level cache in that setup, so entities …

  5. What is the equivalence of org.springframework.cache.ehcache ...

    Explains the equivalence of org.springframework.cache.ehcache.EhCacheManagerFactoryBean in Spring Framework. Useful for developers migrating or working with Spring Cache.

  6. How can I configure Ehcache 3 + spring boot - Stack Overflow

    Oct 19, 2018 · return cmfb; } ehcache.xml - in resources. Now I want to use Ehcache 3 + spring boot and Java config instead xml but I haven't found any example for this. My questions: 1) …

  7. java - Expiry time @cacheable spring boot - Stack Overflow

    11 You cannot specify expiry time with @cacheable notation, since @cacheable does not provide any such configurable option. However different caching vendors providing spring caching …

  8. spring - Using ehcache3 with Spring4 - Stack Overflow

    Feb 19, 2017 · Can someone please help with creating an Ehcache backed CacheManager using Spring JCacheCacheManager via xml? I have something like this. Not sure how to create a …

  9. @Cacheable key on multiple method arguments - Stack Overflow

    Spring passes the list as the key to the actual cache implementation. When using Ehcache, such will at some point invoke List#hashCode (), which takes all its items into account.

  10. EHcache simple example with time-to-live - Stack Overflow

    Apr 30, 2016 · Learn how to implement EHcache with time-to-live for element expiry at runtime in Java using this simple example.