我正在使用HttpComponents 4.5.2并且我正在尝试存储cookie,因为我需要将它们用于登录和其他请求。代码在应用程序仍在运行时工作正常,但问题是当我重新启动时,应该存储在CookieStore中的cookie不存在。这就是我写的:
public static void main( String[] args ) throws InterruptedException
{
RequestConfig globalConfig = RequestConfig.custom()
.setCookieSpec(CookieSpecs.STANDARD).build();
BasicCookieStore cookieStore = new BasicCookieStore();
HttpClientContext context = HttpClientContext.create();
context.setCookieStore(cookieStore);
CloseableHttpAsyncClient httpclient = HttpAsyncClients.custom()
.setDefaultRequestConfig(globalConfig)
.setDefaultCookieStore(cookieStore)
.build();
httpclient.start();
login(httpclient, context);
}
public static void login(CloseableHttpAsyncClient httpClient, HttpClientContext context) throws InterruptedException
{
JSONObject json = new JSONObject("{ email : blahblahblah1, password : blahblahblah2 }");
StringEntity requestEntity = new StringEntity(
json.toString(),
ContentType.APPLICATION_JSON);
HttpPost postMethod = new HttpPost("http://localhost:8080/login");
postMethod.setEntity(requestEntity);
final CountDownLatch latch = new CountDownLatch(1);
httpClient.execute(postMethod, context, new FutureCallback<HttpResponse>() {
public void completed(final HttpResponse response) {
latch.countDown();
System.out.println(postMethod.getRequestLine() + "->" + response.getStatusLine());
//System.out.println(context.getCookieStore().getCookies().size());
}
public void failed(final Exception ex) {
latch.countDown();
System.out.println(postMethod.getRequestLine() + "->" + ex);
}
public void cancelled() {
latch.countDown();
System.out.println(postMethod.getRequestLine() + " cancelled");
}
});
latch.await();
}
我已经阅读了HttpComponents文档,关于cookie的第3.5节说:
HttpClient可以与实现CookieStore接口的持久性cookie存储的任何物理表示一起使用。名为BasicCookieStore的默认CookieStore实现是一个由java.util.ArrayList支持的简单实现。当容器对象被垃圾收集时,存储在BasicClientCookie对象中的Cookie将丢失。如有必要,用户可以提供更复杂的实现
所以我想知道它是否留给它的用户实现某种可以有效存储cookie的结构,或者我是否遗漏了某些东西。
答案 0 :(得分:0)
是的,使用BasicCookieStore
支持的ArrayList
意味着当你的jvm存在时,那里的数据就像内存中的任何ArrayList一样丢失。
BasicCookieStore
类还实现了Serializable
,因此您可以使用它将其持久保存到磁盘,并在应用程序启动时恢复(如果文件存在的话。)
您可以从验证流TestBasicCookieStore#testSerialization的测试中借用一些代码。