springmvc 4.3版本集成 Caffeine缓存系统

有时候想给老系统更新一下。可能会遇到这个问题。查一下官方文档,我看的是,4.3.18的版本。

<dependency>
            <groupId>com.github.ben-manes.caffeine</groupId>
            <artifactId>caffeine</artifactId>
            <version>2.3.5</version>
        </dependency>

原文链接:https://docs.spring.io/spring-framework/docs/4.3.18.RELEASE/spring-framework-reference/html/cache.html#cache-introduction

说要看See Section 36.7, “Plugging-in different back-end caches”  。点过去看一下,基本上就知道大概怎么操作了吧。

36.6.3 Caffeine Cache

原文地址:https://www.cnblogs.com/nanahome/p/14470433.html