Skip to main content

Spring 缓存

huhxLess than 1 minutespringSpringCache

https://www.baeldung.com/spring-cache-tutorialopen in new window

开启Caching

在springboot中使用cache的话,首先要引入依赖:

implementation 'org.springframework.boot:spring-boot-starter-cache'

然后我们需要使用@EnableCaching显示的开启cache:

@Configuration
@EnableCaching
public class CachingConfig {
    // cache config ....
}

使用Cache注解

@Cacheable

@CacheEvict

@CachePut

@Caching

@CacheConfig

使用条件Cache

Condition Parameter

Unless Parameter

Spring Cache原理