Request caching is not available. Maybe you need to initialize the HystrixRequestContext?
在《spring cloud 微服务实战》书中第159页-----请求缓存这一部分,通过继承HystrixCommand的方式实现的命令,开启请求缓存只需通过重载getCacheKey()方法,@Overrideprotected String getCacheKey() {//开启请求缓存 System.out.println("走了缓存");//打印一下什么时候会触发缓存