我们目前在生产服务器上遇到了一些麻烦,因为它消耗了太多内存。其中一个泄漏可能来自球衣客户。我发现了以下两个其他问题以及如何:
- 如何正确共享 JAX-RS 2.0 客户端
- 关闭 JAX RS 客户端/响应
- https://blogs.oracle.com/japod/entry/how_to_use_jersey_client
我从中得到什么,我应该重用客户端,还可能重用 WebTargets?还建议关闭响应,但是如何使用 .request() 执行此操作?
代码示例,每小时用不同的路径调用大约 1000 次:
public byte[] getDocument(String path) {
Client client = ClientBuilder.newClient();
WebTarget target = client.target(config.getPublishHost() + path);
try {
byte[] bytes = target.request().get(byte[].class);
LOGGER.debug("Document size in bytes: " + bytes.length);
return bytes;
} catch (ProcessingException e) {
LOGGER.error(Constants.PROCESSING_ERROR, e);
throw new FailureException(Constants.PROCESSING_ERROR, e);
} catch (WebApplicationException e) {
LOGGER.error(Constants.RESPONSE_ERROR, e);
throw new FailureException(Constants.RESPONSE_ERROR, e);
} finally {
client.close();
}
}
所以我的问题是如何正确使用 API 来防止上述示例的泄漏?