在Spring Boot中使用Redis,可以使用以下步驟:
pom.xml
文件中添加Redis的依賴:<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
application.properties
中配置Redis連接信息,例如:spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=
@Configuration
@EnableCaching
public class RedisConfig {
@Bean
public JedisConnectionFactory jedisConnectionFactory() {
RedisStandaloneConfiguration configuration = new RedisStandaloneConfiguration();
configuration.setHostName("localhost");
configuration.setPort(6379);
return new JedisConnectionFactory(configuration);
}
@Bean
public RedisTemplate<String, Object> redisTemplate() {
RedisTemplate<String, Object> template = new RedisTemplate<>();
template.setConnectionFactory(jedisConnectionFactory());
template.setKeySerializer(new StringRedisSerializer());
template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
return template;
}
}
RedisTemplate
,并使用其方法操作Redis,例如:@Autowired
private RedisTemplate<String, Object> redisTemplate;
public void setValue(String key, Object value) {
redisTemplate.opsForValue().set(key, value);
}
public Object getValue(String key) {
return redisTemplate.opsForValue().get(key);
}
這樣就可以在Spring Boot中使用Redis了。通過RedisTemplate
可以使用各種操作Redis的方法,如opsForValue()
用于操作字符串類型的數據,opsForHash()
用于操作哈希類型的數據等。