在AutoValue POJO上保存firebase ServerValue.TIMESTAMP

时间:2016-04-12 16:56:28

标签: android firebase jackson auto-value

Android chat crashes on DataSnapshot.getValue() for timestamp

我正在尝试为我的POJO添加时间戳属性。上面的解决方案告诉jackson忽略应用程序使用的真实数据成员。我正在使用AutoValue,并且无法弄清楚如何为我的课程注释以使其工作。

@AutoValue
public abstract class Pojo {

    @JsonProperty("id") public abstract String id();
    @JsonProperty("name") public abstract String name();
    @JsonProperty("date") public abstract long date();

    @JsonCreator public static Pojo create(String id, String name, long date) {
        return new AutoValue_Pojo(id, name, date);
    }
}

我尝试使用自定义序列化程序:

public class TimeStampSerializer extends JsonSerializer<Long> {
    @Override public void serialize(Long value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException {
        jgen.writeString(ServerValue.TIMESTAMP.toString());
    }
}

但是它将字符串date: "{.sv=timestamp}"写入firebase而不是生成时间戳

1 个答案:

答案 0 :(得分:0)

抓住了我的错误:

@AutoValue
public abstract class Pojo {


    @JsonProperty("id") public abstract String id();

    @JsonProperty("name") public abstract String name();

    //Custom serializer
    @JsonSerialize(using = TimestampSerializer.class) @JsonProperty("date") public abstract long date();

    @JsonCreator public static Pojo create(@JsonProperty("id") String id, @JsonProperty("name") String name, @JsonProperty("date") long date) {
        return new AutoValue_Pojo(id, name, date);
    }
}

public class TimestampSerializer extends JsonSerializer<Long> {
    @Override public void serialize(Long value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException {
        //Use writeObject() instead of writeString()
        jgen.writeObject(ServerValue.TIMESTAMP);
    }
}