SpringBoot3整合Redis&基础操作
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Service;
@Service
public class RedisService {
@Autowired
private StringRedisTemplate stringRedisTemplate;
public void setKey(String key, String value) {
stringRedisTemplate.opsForValue().set(key, value);
}
public String getKey(String key) {
return stringRedisTemplate.opsForValue().get(key);
}
public void deleteKey(String key) {
stringRedisTemplate.delete(key);
}
}
这段代码展示了如何在Spring Boot 3项目中使用StringRedisTemplate
来进行基本的Redis操作,包括设置键值对、获取键对应的值以及删除键。这是一个简单的服务类,可以被其他组件注入并使用。
评论已关闭