93

クエリパラメータとしてリストを持つGETサービス用のJerseyクライアントを作成しています。ドキュメントによると、クエリパラメータとしてリストを使用することができます(この情報は@QueryParam javadocにもあります)。チェックしてください。

一般に、メソッドパラメータのJavaタイプは次のようになります。

  1. プリミティブ型であること。
  2. 単一のString引数を受け入れるコンストラクターがあります。
  3. 単一のString引数を受け入れるvalueOfまたはfromStringという名前の静的メソッドがあります(たとえば、Integer.valueOf(String)およびjava.util.UUID.fromString(String)を参照)。また
  4. List、Set、またはSortedSetであり、Tは上記の2または3を満たします。結果のコレクションは読み取り専用です。

パラメータに同じ名前の値が複数含まれている場合があります。この場合、4)のタイプを使用してすべての値を取得できます。

ただし、Jerseyクライアントを使用してリストクエリパラメータを追加する方法がわかりません。

代替ソリューションは次のとおりです。

  1. GETの代わりにPOSTを使用します。
  2. リストをJSON文字列に変換し、サービスに渡します。

サービスの適切なHTTP動詞はGETであるため、最初のものは適切ではありません。データ検索操作です。

あなたが私を助けることができないならば、2番目は私のオプションになります。:)

サービスも開発中ですので、必要に応じて変更する場合があります。

ありがとう!

アップデート

クライアントコード(jsonを使用)

Client client = Client.create();

WebResource webResource = client.resource(uri.toString());

SearchWrapper sw = new SearchWrapper(termo, pagina, ordenacao, hits, SEARCH_VIEW, navegadores);

MultivaluedMap<String, String> params = new MultivaluedMapImpl();
params.add("user", user.toUpperCase()); 
params.add("searchWrapperAsJSON", (new Gson()).toJson(sw));

ClientResponse clientResponse = webResource .path("/listar")
                                            .queryParams(params)
                                            .header(HttpHeaders.AUTHORIZATION, AuthenticationHelper.getBasicAuthHeader())
                                            .get(ClientResponse.class);

SearchResultWrapper busca = clientResponse.getEntity(new GenericType<SearchResultWrapper>() {});
4

5 に答える 5

126

@GET does support List of Strings

Setup:
Java : 1.7
Jersey version : 1.9

Resource

@Path("/v1/test")

Subresource:

// receive List of Strings
@GET
@Path("/receiveListOfStrings")
public Response receiveListOfStrings(@QueryParam("list") final List<String> list){
    log.info("receieved list of size="+list.size());
    return Response.ok().build();
}

Jersey testcase

@Test
public void testReceiveListOfStrings() throws Exception {
    WebResource webResource = resource();
    ClientResponse responseMsg = webResource.path("/v1/test/receiveListOfStrings")
            .queryParam("list", "one")
            .queryParam("list", "two")
            .queryParam("list", "three")
            .get(ClientResponse.class);
    Assert.assertEquals(200, responseMsg.getStatus());
}
于 2013-08-15T01:17:01.710 に答える
31

単純な文字列以外のものを送信する場合は、適切なリクエスト本文で POST を使用するか、リスト全体を適切にエンコードされた JSON 文字列として渡すことをお勧めします。ただし、単純な文字列の場合は、各値をリクエスト URL に適切に追加するだけで、Jersey がそれを逆シリアル化します。したがって、次のエンドポイントの例が与えられます。

@Path("/service/echo") public class MyServiceImpl {
    public MyServiceImpl() {
        super();
    }

    @GET
    @Path("/withlist")
    @Produces(MediaType.TEXT_PLAIN)
    public Response echoInputList(@QueryParam("list") final List<String> inputList) {
        return Response.ok(inputList).build();
    }
}

クライアントは以下に対応するリクエストを送信します。

GET http://example.com/services/echo?list=こんにちは&list=滞在&list=さようなら

これはinputList、'Hello'、'Stay'、'Goodbye' の値を含むようにデシリアライズされます。

于 2012-12-06T18:28:20.260 に答える
6

私はあなたが上で述べた代替の解決策についてあなたに同意します

1. Use POST instead of GET;
2. Transform the List into a JSON string and pass it to the service.

そして、そのimplクラスには文字列キーと文字列値を受け入れる機能がListあるため、追加できないのは事実です。次の図に示されていますMultiValuedMapMultivaluedMapImpl

ここに画像の説明を入力してください

それでも、次のコードを試すよりも、そういうことをしたいのです。

コントローラクラス

package net.yogesh.test;

import java.util.List;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;

import com.google.gson.Gson;

@Path("test")
public class TestController {
       @Path("testMethod")
       @GET
       @Produces("application/text")
       public String save(
               @QueryParam("list") List<String> list) {

           return  new Gson().toJson(list) ;
       }
}

クライアントクラス

package net.yogesh.test;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import javax.ws.rs.core.MultivaluedMap;

import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.api.client.config.ClientConfig;
import com.sun.jersey.api.client.config.DefaultClientConfig;
import com.sun.jersey.core.util.MultivaluedMapImpl;

public class Client {
    public static void main(String[] args) {
        String op = doGet("http://localhost:8080/JerseyTest/rest/test/testMethod");
        System.out.println(op);
    }

    private static String doGet(String url){
        List<String> list = new ArrayList<String>();
        list = Arrays.asList(new String[]{"string1,string2,string3"});

        MultivaluedMap<String, String> params = new MultivaluedMapImpl();
        String lst = (list.toString()).substring(1, list.toString().length()-1);
        params.add("list", lst);

        ClientConfig config = new DefaultClientConfig();
        com.sun.jersey.api.client.Client client = com.sun.jersey.api.client.Client.create(config);
        WebResource resource = client.resource(url);

        ClientResponse response = resource.queryParams(params).type("application/x-www-form-urlencoded").get(ClientResponse.class);
        String en = response.getEntity(String.class);
        return en;
    }
}

これがお役に立てば幸いです。

于 2012-12-08T05:05:20.653 に答える