java - GSON 在尝试减少简单的 rest api 响应时抛出错误 : Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2 path $

标签 java gson

我正在尝试像这样解析 JSON

{
    "meta": {
        "limit": 20,
        "next": null,
        "offset": 0,
        "previous": null,
        "total_count": 1
    },
    "objects": [
        {
            "customer_id": "some-customer-id",
            "id": 5,
            "is_active": true,
            "product_code": "some-product-code",
            "resource_uri": "/api/v1/aws-marketplace/5/",
            "support_subscription_id": "22"
        }
    ]
}

http://www.jsonschema2pojo.org 生成我得到了他的 Java 类(class)

package com.greenqloud.netappstats.collector.metrics.gqconsole.api;

import java.util.List;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class AwsMarketplace {

@SerializedName("meta") 
@Expose
private Meta meta;
@SerializedName("objects")
@Expose
private List<Object> objects = null;

public Meta getMeta() {
return meta;
}

public void setMeta(Meta meta) {
this.meta = meta;
}

public List<Object> getObjects() {
return objects;
}

public void setObjects(List<Object> objects) {
this.objects = objects;
}

}

元类

package com.greenqloud.netappstats.collector.metrics.gqconsole.api;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Meta {

@SerializedName("limit")
@Expose
private int limit;
@SerializedName("next")
@Expose
private String next;
@SerializedName("offset")
@Expose
private int offset;
@SerializedName("previous")
@Expose
private String previous;
@SerializedName("total_count")
@Expose
private int totalCount;

public int getLimit() {
return limit;
}

public void setLimit(int limit) {
this.limit = limit;
}

public String getNext() {
return next;
}

public void setNext(String next) {
this.next = next;
}

public int getOffset() {
return offset;
}

public void setOffset(int offset) {
this.offset = offset;
}

public String getPrevious() {
return previous;
}

public void setPrevious(String previous) {
this.previous = previous;
}

public int getTotalCount() {
return totalCount;
}

public void setTotalCount(int totalCount) {
this.totalCount = totalCount;
}

}

项目等级

package com.greenqloud.netappstats.collector.metrics.gqconsole.api;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Object {

@SerializedName("customer_id")
@Expose
private String customerId;
@SerializedName("id")
@Expose
private int id;
@SerializedName("is_active")
@Expose
private boolean isActive;
@SerializedName("product_code")
@Expose
private String productCode;
@SerializedName("resource_uri")
@Expose
private String resourceUri;
@SerializedName("support_subscription_id")
@Expose
private String supportSubscriptionId;

public String getCustomerId() {
return customerId;
}

public void setCustomerId(String customerId) {
this.customerId = customerId;
}

public int getId() {
return id;
}

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

public boolean isIsActive() {
return isActive;
}

public void setIsActive(boolean isActive) {
this.isActive = isActive;
}

public String getProductCode() {
return productCode;
}

public void setProductCode(String productCode) {
this.productCode = productCode;
}

public String getResourceUri() {
return resourceUri;
}

public void setResourceUri(String resourceUri) {
this.resourceUri = resourceUri;
}

public String getSupportSubscriptionId() {
return supportSubscriptionId;
}

public void setSupportSubscriptionId(String supportSubscriptionId) {
this.supportSubscriptionId = supportSubscriptionId;
}

}

但是当试图用这个函数反序列化时

Type localVarReturnType = new TypeToken<List<InstanceCreatorForAwsMarketplace>>(){}.getType();
ApiResponse<List<InstanceCreatorForAwsMarketplace>> responseFromApiCleint = apiClient.execute(newCall, localVarReturnType);

我收到以下错误:

com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2 path $

知道可能是什么问题吗?这看起来像是其余服务返回的相当简单的 json,但我无法让它工作,我们将不胜感激任何帮助。

最佳答案

问题刚写完,我就找到了答案,当然顶级类不应该是一个列表,它本身就是类。但是我有一个次要问题,三个映射器类可以挂载到一个类中吗,只是一个外观问题?

关于java - GSON 在尝试减少简单的 rest api 响应时抛出错误 : Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2 path $,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57852880/

相关文章:

java 小服务程序 : get image from url and display it

android - 使用 GSON 进行 JSON 反序列化

java - 如何使用 JsonElement 在 Gson 中执行自定义序列化?

Java - 从 "http://www.example.com/something.php?id=1111"获取文件名

java - 允许 Java 以 main() 结束,而不关闭已执行的进程

java - Tomcat Servlet 类NotFoundException

java - ArrayList 包含错误的类型对象,没有明确的原始类型转换

java - 如何保存Pojo Gson中不存在的字段

java - Android REST POST 丢失日期值

java - utf-8 转换并不总是有效