Jersey client async POST request to not wait for response
问题 I have created a simple Jersey client and it is able to successfully do a POST request with a payload. But right now it waits for a response from the http endpoint: public void callEndpoint(String endpoint, String payload) { try { ClientConfig config = new DefaultClientConfig(); Client client = Client.create(config); WebResource webResource = client.resource(getBaseURI(endpoint)); log.debug("Sending payload [" + payload + "] to URL - [" + getBaseURI(endpoint) + "]"); // POST method - Is this