1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| @SpringBootTest class RedisSpringbootApplicationTests { @Autowired private RedisTemplate redisTemplate;
@Test void testString() { ValueOperations ops = redisTemplate.opsForValue(); ops.set("msg1", "hello jedis"); String msg = (String) ops.get("msg"); System.out.println("msg="+msg); }
}
|