在Spring Boot 3整合Redis,你可以使用Spring Data Redis。以下是一个简单的例子:
- 添加依赖到你的
pom.xml
:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<!-- 其他依赖 -->
</dependencies>
- 配置
application.properties
或application.yml
:
# application.properties
spring.redis.host=localhost
spring.redis.port=6379
或者使用YAML格式:
# application.yml
spring:
redis:
host: localhost
port: 6379
- 使用
RedisTemplate
或StringRedisTemplate
操作Redis:
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Component;
@Component
public class RedisService {
@Autowired
private RedisTemplate<String, Object> redisTemplate;
public void setKeyValue(String key, Object value) {
redisTemplate.opsForValue().set(key, value);
}
public Object getValueByKey(String key) {
return redisTemplate.opsForValue().get(key);
}
}
- 在Spring Boot应用的主类或配置类中启用Redis:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class RedisDemoApplication {
public static void main(String[] args) {
SpringApplication.run(RedisDemoApplication.class, args);
}
}
确保你的Spring Boot版本是最新的,并且满足所有依赖关系。上述代码提供了一个简单的RedisService类,用于设置和获取键值对。在实际应用中,你可能需要根据自己的需求进行更复杂的配置和编码。