spring boot EnableCaching 缓存

Spring Boot 添加缓存

  1. 在pom.xml引入catch依赖

	org.springframework.boot
	spring-boot-starter-cache

  1. 在springboot主体类中添加@EnableCaching注解。
    @EnableCaching:注解是spring framework中的注解驱动的缓存管理功能。
  2. 在数据访问接口中,增加缓存配置注解。
    缓存注解:@Cacheable 、 @CachePut 、@CacheEvict

你可能感兴趣的:(SpringBoot)