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 SpringBoot中的缓存机制

springboot+mybatis+ehcache实现缓存数据

SpringBoot缓存管理之整合Redis缓存的实现

SpringBoot缓存(Ehcache)

springboot高级特性-缓存

007-spring cache-缓存实现-02-springboot ehcahe3实现springboot caffeine实现