当前位置:  开发笔记 > 编程语言 > 正文

Spring 4.2:CacheControl不允许no-store和no-cache标头

如何解决《Spring4.2:CacheControl不允许no-store和no-cache标头》经验,为你挑选了0个好方法。

我们正在将项目从spring-web 4.1.8迁移到4.2.3,并且需要替换已弃用的代码

WebContentInterceptor interceptor = new WebContentInterceptor();
interceptor.setCacheSeconds(0);
interceptor.setUseExpiresHeader(true);
interceptor.setUseCacheControlHeader(true);
interceptor.setUseCacheControlNoStore(true);

随着新的CacheControl和使用interceptor.setCacheControl(cacheControl).

但是使用新的API CacheControl,你不能一起使用noStore(),noCache()因为这些方法返回一个新的CacheControl并且不更新现有的方法.

任何想法,为什么会这样,以及如何设置Cache-Control标头no-store, no-cache使用新的API?

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有