簡體   English   中英

傑克遜定制解串器沒有被稱為

[英]jackson custom deserializer not called

我在改造中有以下端點:

@GET("user/detail")
Observable<JacksonResponse<User>> getUserDetail();

此端點返回以下結果:

{
  "code":1012,
  "status":"sucess",
  "message":"Datos Del Usuario",
  "time":"28-10-2015 10:42:04",
  "data":{
    "id_hash":977417640,
    "user_name":"Daniel",
    "user_surname":"Hdz Iglesias",
    "birthdate":"1990-02-07",
    "height":190,
    "weight":80,
    "sex":2,
    "photo_path":" https:\/\/graph.facebook.com
    \/422\/picture?width=100&height=100"
  }
}

以下是該類的定義:

public class JacksonResponse<T> {

    private Integer code;
    private String status;
    private String message;
    private String time;
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private T data;

    public JacksonResponse(){}

    @JsonCreator
    public JacksonResponse(
            @JsonProperty("code") Integer code,
            @JsonProperty("status") String status,
            @JsonProperty("message") String message,
            @JsonProperty("time") String time,
            @JsonProperty("data") T data) {
        this.code = code;
        this.status = status;
        this.message = message;
        this.time = time;
        this.data = data;
    }

    public Integer getCode() {
        return code;
    }

    public void setCode(Integer code) {
        this.code = code;
    }

    public String getStatus() {
        return status;
    }

    public void setStatus(String status) {
        this.status = status;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public String getTime() {
        return time;
    }

    public void setTime(String time) {
        this.time = time;
    }

    public T getData() {
        return data;
    }

    public void setData(T data) {
        this.data = data;
    }

}

我想將內容“data”映射到用戶類,其摘錄顯示在這里:

@JsonIgnoreProperties(ignoreUnknown = true)
@ModelContainer
@Table(database = AppDatabase.class)
public class User extends BaseModel {

    @PrimaryKey(autoincrement = true)
    private Long id;
    @Column
    private Long idFacebook;
    @Column
    @JsonProperty("user_name")
    private String name;
    @Column
    @JsonProperty("user_surname")
    private String surname;
    @Column
    private Date birthday;
    @Column
    @JsonProperty("height")
    private Double height;
    @Column
    @JsonProperty("weight")
    private Double weight;
    @Column
    private String tokenFacebook;
    @Column
    @JsonProperty("sex")
    private Integer sex;
    @Column
    private String email;
    @Column
    private String token;
    @Column
    private Date lastActivity;
    @Column
    @JsonProperty("id_hash")
    private Long idHash;
    @Column
    @JsonProperty("photo_path")
    private String photoPath;

為了生日,我定義了一個自定義反序列化器,其代碼顯示在這里:

public class BirthdayDeserializer extends JsonDeserializer<Date> {
    @Override
    public Date deserialize(JsonParser jsonparser, DeserializationContext deserializationcontext) throws IOException {

        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String date = jsonparser.getText();
        try {
            return format.parse(date);
        } catch (ParseException e) {
            throw new RuntimeException(e);
        }
    }

}

我使用如下(在User類):

@JsonProperty("birthday")
@JsonDeserialize(using = BirthdayDeserializer.class)
public void setBirthday(Date birthday) {
  this.birthday = birthday;
}

但這從未被召喚過。

知道發生了什么事嗎?

你Pojo和JSON沒有映射。 您需要一個Data.java ,它應具有JSON中給出的屬性。 根據上面給出的json,你的課程應該如下。

User.java

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
public class User {

    @JsonProperty("code")
    public Integer code;
    @JsonProperty("status")
    public String status;
    @JsonProperty("message")
    public String message;
    @JsonProperty("time")
    public String time;
    @JsonProperty("data")
    public Data data;

}

Data.java

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

@JsonIgnoreProperties(ignoreUnknown = true)
public class Data {

    @JsonProperty("id_hash")
    public Integer idHash;
    @JsonProperty("user_name")
    public String userName;
    @JsonProperty("user_surname")
    public String userSurname;
    @JsonProperty("birthdate")
    @JsonDeserialize(using = BirthdayDeserializer.class)
    public Date birthdate;
    @JsonProperty("height")
    public Integer height;
    @JsonProperty("weight")
    public Integer weight;
    @JsonProperty("sex")
    public Integer sex;
    @JsonProperty("photo_path")
    public String photoPath;

}

Main.java來測試它。

public class Main {

    public static void main(String[] args) throws IOException {

        String json = "{\n" +
                "    \"code\": 1012,\n" +
                "    \"status\": \"sucess\",\n" +
                "    \"message\": \"Datos Del Usuario\",\n" +
                "    \"time\": \"28-10-2015 10:42:04\",\n" +
                "    \"data\": {\n" +
                "        \"id_hash\": 977417640,\n" +
                "        \"user_name\": \"Daniel\",\n" +
                "        \"user_surname\": \"Hdz Iglesias\",\n" +
                "        \"birthdate\": \"1990-02-07\",\n" +
                "        \"height\": 190,\n" +
                "        \"weight\": 80,\n" +
                "        \"sex\": 2\n" +
                "    }\n" +
                "}";
        ObjectMapper mapper = new ObjectMapper();
        SimpleModule module = new SimpleModule();
        module.addDeserializer(Date.class, new BirthdayDeserializer());
        mapper.registerModule(module);
        User readValue = mapper.readValue(json, User.class);
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM