通过外层key和内层key获取redis的值

outKey ,innerKey;

BoundHashOperations<String, Object, Object> hashOps = this.redisTemplate.boundHashOps(outKey );
String value = (String) hashOps.get(innerKey);
原文地址:https://www.cnblogs.com/padazala/p/13587807.html