提问者:小点点

如何更改泽西客户端中的CookieSpec?


我在项目中使用了泽西客户端,如下所示:

clientConfig. ConnectorProvider(new ApacheConnectorProvider());
clientConfig.寄存器(MultiPartFeature.class);
client=ClientBuilder.newClient(clientConfig);

它实际上使用httpClient来完成这项工作。但是现在我在这个问题中遇到了CookieSpec问题:使用FluentAPI修复HttpClient警告“无效过期属性”。我需要更改CookieSpec,但我找不到更改配置的位置。


共1个答案

匿名用户

也许您可以尝试使用以下解决方案:

RequestConfig requestConfig = RequestConfig.custom()
                .setCookieSpec(CookieSpecs.STANDARD).build();
        clientConfig.property(ApacheClientProperties.REQUEST_CONFIG, requestConfig);