我有一个从 ElasticSearch 索引中读取数据并进行处理的微服务。该索引有一个日期字段,我无法将日期字段数据加载到文档实体中。这是我正在尝试实现的快照。
指数
"date_created": {
"type": "date"
}
将日期存储为
"date_created": "2015-07-02T14:56:51.000Z"
我的实体类
@Data
@NoArgsConstructor
@AllArgsConstructor
@Document(indexName = "account", type = "doc")
public class Account implements Serializable {
...
@JsonProperty("date_created")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSZ")
@JsonSerialize(using = LocalDateTimeSerializer.class)
@JsonDeserialize(using = LocalDateTimeDeserializer.class)
private LocalDateTime dateCreated;
...
}
在运行时从 ElasticSearch 存储库获取记录时出现的错误如下
nested exception is org.springframework.data.elasticsearch.ElasticsearchException: failed to map source ...
java.time.format.DateTimeParseException: Text '2002-08-05T04:00:00.000Z' could not be parsed, unparsed text found at index 23
有没有办法解决这个问题?我将尝试如下更改索引定义和 JsonFormat,但我不确定这是否可行。我提前询问是因为我需要时间来实施索引的更改。
索引更改我稍后会尝试。
"date_created": {
"type": "date",
"format": "yyyy-MM-dd'T'HH:mm:ss.SSS"
}
json格式改变
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS")
非常感谢您的帮助。
幕布斯7119047
慕哥9229398
相关分类