步骤01 引入Redis依赖包
<dependency>
<groupId>org.springframework.boot
</groupId>
<artifactId>spring-boot-starter-data-redis
</artifactId>
</dependency>
步骤02 修改配置文件
在application.properties配置文件增加有关Redis的配置:
步骤03 验证测试
@SpringBootTest
public class TestRedisTemplate{
@Autowired
private RedisTemplate redisTemplate;
@Test
public void testString(){
//调用set()方法创建缓存
redisTemplate.opsForVaule().set("hello:redis","hello spring boot");
System.out.println("hello,redis:"+redisTemplate.opsForValue().get("hello:redis"));
}
}