面对REST Web服务中的CacheControl问题

时间:2015-07-10 13:01:17

标签: rest

我在我的webservice(Jersey REST Webservice调用)中使用这部分代码来通过提供缓存来加速应用程序

         CacheControl cc = new CacheControl();
         cc.setMaxAge(300000);
         cc.setPrivate(true);
         httpresponse.addHeader("Cache-Control", cc.toString());

但是我看到一段时间后,返回的respinse是空的?

(数据库时间正在发生)

你能不能让我知道这可能是什么原因?

0 个答案:

没有答案