1:引入springboot redis的maven依赖(建议使用spring-boot-dependencies或者使用spring-io-platform进行构建项目)
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
</dependency>
2:配置RedisConfig
/**
* @author liuenyuan
**/
@Configuration
@EnableCaching
@Slf4j
public class RedisConfig extends CachingConfigurerSupport {
@Autowired
private RedisProperties redisProperties;
/**
* redis cache name
**/
public static final String REDIS_CACHE_NAME = "epc";
/**
* {@link org.springframework.cache.annotation.Cacheable}第一个注解代表从缓存中查询指定的key,如果有,从缓存中取,不再执行方法.如果没有则执
* 行方法,并且将方法的返回值和指定的key关联起来,放入到缓存中.<br/>
* {@link org.springframework.cache.annotation.CacheEvict}从缓存中清除指定的key对应的数据.<br/>
* {@link org.springframework.cache.annotation.C