성능, 안정성, 성숙도 등에서 HTTP POST, GET 등에 사용할 수있는 최고의 Java 라이브러리는 무엇입니까? 다른 것보다 더 많이 사용되는 특정 라이브러리가 있습니까?
내 요구 사항은 HTTPS POST 요청을 원격 서버에 제출하는 것입니다. 이전에 java.net. * 패키지와 org.apache.commons.httpclient. * 패키지를 사용했습니다. 둘 다 작업을 완료했지만 귀하의 의견 / 추천을 부탁드립니다.
답변:
imho : Apache HTTP 클라이언트
사용 예 :
import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.*;
import org.apache.commons.httpclient.params.HttpMethodParams;
import java.io.*;
public class HttpClientTutorial {
private static String url = "http://www.apache.org/";
public static void main(String[] args) {
// Create an instance of HttpClient.
HttpClient client = new HttpClient();
// Create a method instance.
GetMethod method = new GetMethod(url);
// Provide custom retry handler is necessary
method.getParams().setParameter(HttpMethodParams.RETRY_HANDLER,
new DefaultHttpMethodRetryHandler(3, false));
try {
// Execute the method.
int statusCode = client.executeMethod(method);
if (statusCode != HttpStatus.SC_OK) {
System.err.println("Method failed: " + method.getStatusLine());
}
// Read the response body.
byte[] responseBody = method.getResponseBody();
// Deal with the response.
// Use caution: ensure correct character encoding and is not binary data
System.out.println(new String(responseBody));
} catch (HttpException e) {
System.err.println("Fatal protocol violation: " + e.getMessage());
e.printStackTrace();
} catch (IOException e) {
System.err.println("Fatal transport error: " + e.getMessage());
e.printStackTrace();
} finally {
// Release the connection.
method.releaseConnection();
}
}
}
몇 가지 주요 기능 :
Commons HttpClient 의 후속 제품인 Apache HttpComponents HttpClient를 추천합니다.
HtmlUnit을 살펴 보는 것도 좋습니다. HtmlUnit은 "Java 프로그램 용 GUI없는 브라우저"입니다. http://htmlunit.sourceforge.net/
나는 Jersey에 다소 편파적 입니다. 우리는 모든 프로젝트에서 1.10을 사용하고 있으며 해결할 수없는 문제는 발생하지 않았습니다.
내가 좋아하는 몇 가지 이유 :
사실 HTTPClient와 Jersey는 구현과 API가 매우 유사합니다. HTTPClient를 지원할 수있는 Jersey 용 확장도 있습니다.
Jersey 1.x의 일부 코드 샘플 : https://blogs.oracle.com/enterprisetechtips/entry/consuming_restful_web_services_with
http://www.mkyong.com/webservices/jax-rs/restful-java-client-with-jersey-client/
Jersey 클라이언트가있는 HTTPClient : https://blogs.oracle.com/PavelBucek/entry/jersey_client_apache_http_client
httpclient가 표준이라는 데 동의하지만 옵션을 찾고있는 것 같습니다.
Restlet은 Restful 웹 서비스와 상호 작용하도록 특별히 설계된 http 클라이언트를 제공합니다.
예제 코드 :
Client client = new Client(Protocol.HTTP);
Request r = new Request();
r.setResourceRef("http://127.0.0.1:8182/sample");
r.setMethod(Method.GET);
r.getClientInfo().getAcceptedMediaTypes().add(new Preference<MediaType>(MediaType.TEXT_XML));
client.handle(r).getEntity().write(System.out);
자세한 내용은 http://www.restlet.org/ 를 참조하십시오.
corn-httpclient를 추천합니다 . 대부분의 경우 간단하고 빠르며 충분합니다.
HttpForm form = new HttpForm(new URI("http://localhost:8080/test/formtest.jsp"));
//Authentication form.setCredentials("user1", "password");
form.putFieldValue("input1", "your value");
HttpResponse response = form.doPost();
assertFalse(response.hasError());
assertNotNull(response.getData());
assertTrue(response.getData().contains("received " + val));
메이븐 의존성
<dependency>
<groupId>net.sf.corn</groupId>
<artifactId>corn-httpclient</artifactId>
<version>1.0.0</version>
</dependency>
Google HTTP 자바 클라이언트 는 Android 및 App Engine에서도 실행할 수 있기 때문에 나에게 잘 어울립니다.
Ning Async Http Client Library 를 언급하고 싶습니다 . 나는 그것을 사용한 적이 없지만 과거에 항상 사용했던 Apache Http Client에 비해 동료가 그것에 대해 열광합니다. 특히 고성능 비동기 I / O 프레임 워크 인 Netty를 기반으로한다는 사실을 알고 싶었습니다.이 프레임 워크는 제가 더 익숙하고 높은 평가를 받고 있습니다.