springboot redis实战
时间: 2023-04-30 21:02:49 浏览: 130
SpringBoot 集成 Redis 是很简单的,可以采用如下步骤:
1. 在 pom.xml 文件中添加 Redis 的依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
```
2. 配置 Redis 的连接信息,在 application.properties 或者 application.yml 文件中添加:
```
spring.redis.host=your_redis_host
spring.redis.port=your_redis_port
```
3. 在需要使用 Redis 的类中注入 RedisTemplate 或者 StringRedisTemplate,然后即可使用其中的方法进行操作
```
@Autowired
private RedisTemplate<String, Object> redisTemplate;
```
4. 如果需要使用 Redis 的缓存功能,可以在配置类中配置 RedisCacheManager,并在需要缓存的方法上添加 @Cacheable 注解
```
@Configuration
@EnableCaching
public class RedisConfig extends CachingConfigurerSupport {
@Bean
public CacheManager cacheManager(RedisConnectionFactory factory) {
RedisCacheManager cacheManager = RedisCacheManager.create(factory);
return cacheManager;
}
}
```
参考文档:https://docs.spring.io/spring-data/redis/docs/2.3.3.RELEASE/reference/html/
阅读全文