赞
踩
要在Spring Boot中整合Redis,你需要执行以下步骤:
pom.xml
文件中添加以下依赖:<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
application.properties
或application.yml
文件中配置Redis连接信息:# application.properties
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=your_password
spring.redis.database=0
或者
# application.yml
spring:
redis:
host: localhost
port: 6379
password: your_password
database: 0
RedisTemplate
来操作Redis。首先,注入RedisTemplate
:@Autowired
private RedisTemplate<String, Object> redisTemplate;
然后,你可以使用redisTemplate
的方法来操作Redis,例如:
// 存储数据
redisTemplate.opsForValue().set("key", "value");
// 获取数据
Object value = redisTemplate.opsForValue().get("key");
// 删除数据
redisTemplate.delete("key");
RedisTemplate
的序列化方式。例如,使用Jackson作为序列化方式:@Configuration public class RedisConfig { @Bean public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) { RedisTemplate<String, Object> template = new RedisTemplate<>(); template.setConnectionFactory(factory); // 使用Jackson2JsonRedisSerializer来序列化和反序列化redis的value值 Jackson2JsonRedisSerializer<Object> jacksonSeial = new Jackson2JsonRedisSerializer<>(Object.class); ObjectMapper objectMapper = new ObjectMapper(); objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); objectMapper.activateDefaultTyping(LaissezFaireSubTypeValidator.instance, ObjectMapper.DefaultTyping.NON_FINAL); jacksonSeial.setObjectMapper(objectMapper); // 设置value的序列化规则和 key的序列化规则 template.setValueSerializer(jacksonSeial); template.setKeySerializer(new StringRedisSerializer()); template.afterPropertiesSet(); return template; } }
现在你已经成功整合了Spring Boot和Redis,可以开始使用Redis来存储和操作数据了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。