web-dev-qa-db-ja.com

ジェネリック型のJersey ClientResponse.getEntity

Jeresy ClientRespone.getEntityを使用して逆シリアル化する問題が発生しました

これを含めて、いくつかのチュートリアルと質問を試してみました: http://jersey.576304.n2.nabble.com/How-can-I-parse-a-Java-util-List-lt- gt-is-it-supported-by-the-Jersey-client-td2300852.htmlhttps://jersey.Java.net/nonav/documentation/1.5/json.html - http://www.programcreek.com/Java-api-examples/index.php?api=com.Sun.jersey.api.client.GenericType

そして、私はまだ同じ例外を何度も繰り返しました。

私の目標は:ではなく:

response.getEntity(String.class); --> {"name":"Ben","type":"The man","id":0}

解析して(たとえばJacksonを使用して)、エンティティをPOJOオブジェクトに取得します。

これはこれまでの私の試みです:

サーバ側:

@POST
@Path("/account") // route to a specific method.re
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Response saveDataIntoHash(Account account) {
    Account createdAccount = new Account(account.getName(), account.getType());
    accountHash.put(createdAccount.getID(), createdAccount);
    return Response.status(201).entity(new AccountResponse(createdAccount.getID())).build();
}

サーバー側のアカウントクラス:

private String name;
private String type;
private int ID;

private static int classID = 0;

public Account(String name, String type) {
    this.name = name;
    this.type = type;
    this.ID = classID++;
}

public Account() {
}

public void setName(String name) { this.name = name; }

public String getName() { return name; }

public void setType(String type) { this.type = type; }

public String getType() { return type; }

public int getID() {
    return ID;
}

public void setID(int ID) {
    this.ID = ID;
}

public static int getClassID() {
    return classID;
}

public static void setClassID(int classID) {
    Account.classID = classID;
}

クライアント側

private static void getToRestPartner(Client client) {
    WebResource webResource = client.resource("http://localhost:8080/RESTfulExample/rest/account/0");
    ClientResponse response = webResource.type("application/json").get(ClientResponse.class);

    if (!(response.getStatus() == 201 || response.getStatus() == 200)) {
        throw new RuntimeException("Failed : HTTP error code : " + response.getStatus());
    }

    System.out.println("Output from Server .... \n");

    List<Account> accountList =  response.getEntity(new GenericType<List<Account>>() {
    });

    System.out.println(accountList.size());
}

クライアントアカウントクラス:

@XmlRootElement
public class Account {
@XmlElement
private String name;
@XmlElement
private String type;
@XmlElement
private int id;

public Account(String name, String type, Integer id) {
    this.name = name;
    this.type = type;
    this.id = id;
}

public Account() {
}

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public String getType() {
    return type;
}

public void setType(String type) {
    this.type = type;
}

public int getId() {
    return id;
}

public void setId(int id) {
    this.id = id;
}

この例外をスローします:

Dec 7, 2014 12:15:58 PM com.Sun.jersey.api.client.ClientResponse getEntity
SEVERE: A message body reader for Java class Java.util.List, and Java type Java.util.List<Account>, and MIME media type application/json was not found
Dec 7, 2014 12:15:58 PM com.Sun.jersey.api.client.ClientResponse getEntity
SEVERE: The registered message body readers compatible with the MIME media type are:
*/* ->
  com.Sun.jersey.core.impl.provider.entity.FormProvider
  com.Sun.jersey.core.impl.provider.entity.StringProvider
  com.Sun.jersey.core.impl.provider.entity.ByteArrayProvider
  com.Sun.jersey.core.impl.provider.entity.FileProvider
  com.Sun.jersey.core.impl.provider.entity.InputStreamProvider
  com.Sun.jersey.core.impl.provider.entity.DataSourceProvider
  com.Sun.jersey.core.impl.provider.entity.XMLJAXBElementProvider$General
  com.Sun.jersey.core.impl.provider.entity.ReaderProvider
  com.Sun.jersey.core.impl.provider.entity.DocumentProvider
  com.Sun.jersey.core.impl.provider.entity.SourceProvider$StreamSourceReader
  com.Sun.jersey.core.impl.provider.entity.SourceProvider$SAXSourceReader
  com.Sun.jersey.core.impl.provider.entity.SourceProvider$DOMSourceReader
  com.Sun.jersey.core.impl.provider.entity.XMLRootElementProvider$General
  com.Sun.jersey.core.impl.provider.entity.XMLListElementProvider$General
  com.Sun.jersey.core.impl.provider.entity.XMLRootObjectProvider$General
  com.Sun.jersey.core.impl.provider.entity.EntityHolderReader

Exception in thread "main" com.Sun.jersey.api.client.ClientHandlerException: A message body reader for Java class Java.util.List, and Java type Java.util.List<Account>, and MIME media type application/json was not found
    at com.Sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.Java:549)
    at com.Sun.jersey.api.client.ClientResponse.getEntity(ClientResponse.Java:523)
    at com.sample.Sample.getToRestPartner(Sample.Java:59)
    at com.sample.Sample.main(Sample.Java:22)
    at Sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at Sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.Java:39)
    at Sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.Java:25)
    at Java.lang.reflect.Method.invoke(Method.Java:597)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.Java:134)

あなたの助けに感謝します!!

13
user2212726

修正または追加する必要のあるものはほとんどありません(一部の部品が欠落しているため、ケースではわかりません)

リソース:テスト用に独自のものを作成しました。いくつかのアイテムが欠けていたためです

@Path("/")
public class AccountResource {
    @GET
    @Path("/account") // route to a specific method.re
    @Produces(MediaType.APPLICATION_JSON)
    public Response saveDataIntoHash() {
        List<Account> accounts = new ArrayList<Account>();
        accounts.add(new Account("Stack", "Savings"));
        accounts.add(new Account("Overflow", "Checkings"));
        GenericEntity generic = new GenericEntity<List<Account>>(accounts){};
        return Response.status(201).entity(generic).build();
    }
}

この依存関係があると仮定します:

<dependency>
    <groupId>com.Sun.jersey</groupId>
    <artifactId>jersey-json</artifactId>
    <version>${jersey-version}</version>
</dependency>

テストケース:クライアントの構成に注意してください。これが必要です。

public void testMyResource() {
    ClientConfig config = new DefaultClientConfig();
    config.getClasses().add(JacksonJaxbJsonProvider.class);
    config.getFeatures().put(JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE);

    Client c = Client.create(config);

    WebResource resource = c.resource(Main.BASE_URI);
    ClientResponse response = resource.path("account")
            .accept("application/json").get(ClientResponse.class);

    List<Account> accounts
                = response.getEntity(new GenericType<List<Account>>(){});

    StringBuilder builder = new StringBuilder("=== Accounts ===\n");
    for (Account account: accounts) {
        builder.append("Name: ").append(account.getName()).append(", ")
                .append("Type: ").append(account.getType()).append("\n");          
    }
    builder.append("==================");
    System.out.println(builder.toString());    
}

アカウント(クライアント)クラスに1つの注釈がありません。フィールド注釈を使用しているため、必須です。別のオプションは、idのゲッターとセッターを追加することです

@XmlRootElement  
@XmlAccessorType(XmlAccessType.FIELD)  // <======= This Here
public class Account {
    // added toString for testing
    @Override
    public String toString() {
        return "Account{" + "name=" + name 
                          + ", type=" + type 
                          + ", id=" + id + '}';
    }
}

結果テストから:

=== Accounts ===
Name: Stack, Type: Savings
Name: Overflow, Type: Checkings
==================

注:このテストは、サーバー側に何も問題がないという前提に基づいています。

25
Paul Samsotha