1

我正在使用 HTTPClient 构建一个测试项目来测试 restful 服务。这是迄今为止我成功用于在 GET 上获得 200 OK 响应的代码。但是,我在 .releaseConnection 上遇到错误,HTTPClient 文档说使用它很重要。

代码:

public class Container {

    public String tryGet() {
        String getResult = null;
        DefaultHttpClient httpclient = new DefaultHttpClient();
        HttpGet httpGet = new HttpGet("http://test.url");
        try {
            HttpResponse response1 = httpclient.execute(httpGet);
            System.out.println(response1.getStatusLine());
            getResult = response1.getStatusLine().toString();
        } catch (ClientProtocolException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } finally {
            httpGet.releaseConnection();
        }

        return getResult;

    }

}

运行我的 junit 测试时,我收到以下与 .releaseConnection() 相关的错误:

java.lang.NoSuchMethodError: org.apache.http.client.methods.HttpGet.releaseConnection()V
    at com.qa.Container.tryGet(CreativeContainer.java:49)
    at com.qa.SandboxTest.test(SandboxTest.java:23)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:44)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:180)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:41)
    at org.junit.runners.ParentRunner$1.evaluate(ParentRunner.java:173)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:220)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

代码很丑,我知道。我才刚刚开始。

4

4 回答 4

4

HttpRequestBase#releaseConnection()方法是在 4.2 版本中明确添加的。

可能你有罐子地狱。如果编译器没有编译错误,则可以在运行时加载该类的另一个版本。真正的原因取决于您的构建工具。如果您使用的是 maven/gradle,则可能存在一些传递依赖。

所以实际上HttpRequestBase#releaseConnection()方法只是对AbstractExecutionAwareRequest#reset()的代理调用。而AbstractExecutionAwareRequest#reset()只是取消方法执行。可能这不是您需要的。

执行和释放httpClient资源的正确方法是关闭httpResponse,也就是说可以在httpClient的内部threadPool中释放Thread。

private static String makeRequest(HttpUriRequest httpRequest) throws IOException {
    CloseableHttpResponse httpResponse = httpClient.execute(httpRequest);
    try {
        HttpEntity httpEntity = httpResponse.getEntity();
        StringWriter writer = new StringWriter();
        IOUtils.copy(httpEntity.getContent(), writer, "UTF-8");
        return writer.toString();
    } finally {
        httpResponse.close();
    }
}
于 2014-01-11T10:01:41.863 回答
1

对于使用 httpclient 4.2.2 所需的所有 jar,快速入门并不是很清楚。我创建了一个依赖 org.apache.httpcomponents:httpclient:4.2.2 的 Maven 项目,并获得了以下附加 jar:

  • org.apache.httpcomponents:httpcore:4.2.2
  • 公共日志记录:公共日志记录:1.1.1
  • 公共编解码器:公共编解码器:1.6

我复制了您的代码(将 HttpGet-url 更改为“ https://www.google.com/ ”)并用它运行了 JUnit 测试,没有错误。

确实需要“.releaseConnection()”来确保关闭连接(在出现问题后)。省略“.releaseConnection()”可能会导致打开的连接在您的系统上什么都不做。

由于您仍处于开发开始阶段,我建议您使用最新的 HttpClient 4.3.x 版本(当前为 4.3.1)。4.3 版本对 4.2 版本进行了一些很好的改进,但用法也发生了变化。例如,在快速入门中,您将看到不再使用“.releaseConnection()”(已弃用),而是关闭响应对象以确保关闭连接。

于 2014-01-10T19:14:07.707 回答
1

从 4.2 版本开始引入此方法,请参阅javadoc

所以你需要使用版本 > 4.2 我用 4.3.1 版本测试过它并且工作正常。

<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.3.1</version>
</dependency>

http://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient/4.3.1

啊

于 2014-01-11T09:36:33.613 回答
0

使用 httpcomponents-client-4.2.1

于 2012-12-06T01:45:28.003 回答