1

HTTPClient を使用してテスト プロジェクトを構築し、安らかなサービスをテストしています。これは、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

1

httpclient 4.2.2 を使用するために必要なすべての jar について、クイックスタートは明確ではありません。依存関係 org.apache.httpcomponents:httpclient:4.2.2 を持つ Maven プロジェクトを作成し、次の追加の jar を取得しました。

  • org.apache.httpcomponents:httpcore:4.2.2
  • commons-logging:commons-logging:1.1.1
  • commons-codec:commons-codec: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 に答える