0

我正在使用 ES Jest。我可以进行搜索并获得回复。但是当我使用Date属性进行序列化时,我null在序列化后得到了响应。

以下是我的ES文档索引和搜索结果类:

public class IndexDocument {
  public long id;
  @JsonSerialize(using = JsonDateSerializer.class)
  public Date Date1;
  @JsonSerialize(using = JsonDateSerializer.class)
  public Date Date2;
}

我有以下日期序列化代码:

public class JsonDateSerializer extends JsonSerializer<Date> {
    private final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-ddTHH:mm:ss.SSSZ");
    @Override
    public void serialize(Date date, JsonGenerator gen, SerializerProvider provider)
            throws IOException, JsonProcessingException {
        String formattedDate = dateFormat.format(date);
        gen.writeString(formattedDate);
    }
}

来自 ES 的回应:

"hits" : [{
        "_index" : "myindex",
        "_type" : "mytype",
        "_id" : "3",
        "_score" : 1.3294203,
        "_source" : {
            "Date1" : "2016-11-24T14:39:08.000Z",
            "id" : 1,
            "Date2" : "1900-01-01T00:00:00.000Z"
        }
    }
]

我的序列化代码:

JestResult result = client.execute(search);   // i can see the response here 
response =  result.getSourceAsObjectList(IndexDocument.class);

序列化后,我得到response = null

如果我从中删除 date 属性indexDocument,我可以看到序列化的响应。但是,使用 date 属性,它不起作用。什么地方出了错?

4

1 回答 1

2

JEST 使用 gson 来解析日期,因此当 jest 解析搜索结果时,不会使用您的 jackson 注释。您可能会发现此解决方案很有帮助: https ://jtruty.github.io/programming/2015/04/03/elasticsearch-http-queries-with-jest.html

于 2017-07-22T03:13:59.093 回答