Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
发出 JSON 请求时如何停止缓存?在我的 JSON 请求标头中,我有用户名和密码,我的问题是:
但我不明白为什么我必须强制停止应用程序才能获得正确的请求状态。我唯一想到的是数据以某种方式被缓存。如果我的想法是正确的,我该如何防止缓存?
我已经弄清楚问题所在了。当我更改密码时,会话没有关闭,它正在连接旧数据。所以我不得不使用这段代码“注销”:
client.getConnectionManager().closeExpiredConnections(); client = null;
然后我创建了一个新的 Http 客户端。