springboot 缓存
Posted white knight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 缓存相关的知识,希望对你有一定的参考价值。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
@Cacheable(value = "value1", key = "#p0+#p1")
List<A> getAs(String param1, String param2){...}
@CacheEvict(value = {"value1"}, allEntries = true)
void updateA(String param3){...}
@SpringBootApplication
@EnableCaching
public class Application {
}
以上是关于springboot 缓存的主要内容,如果未能解决你的问题,请参考以下文章
springboot+mybatis+ehcache实现缓存数据
007-spring cache-缓存实现-02-springboot ehcahe3实现springboot caffeine实现