@Autowired
private RedisTemplate<String, String> redisTemplate;
//set到redis中
redisTemplate.opsForValue().set(RedisKeyConstant.AGV_CODE,"0");
//读取redis中的key获取value
final ValueOperations<String, String> forValue = redisTemplate.opsForValue();
2021-11-18 00:40:12
@Autowired
private RedisTemplate<String, String> redisTemplate;
//set到redis中
redisTemplate.opsForValue().set(RedisKeyConstant.AGV_CODE,"0");
//读取redis中的key获取value
final ValueOperations<String, String> forValue = redisTemplate.opsForValue();