我知道elasticsearch只能在内部保存Date
类型。但是我可以让它知道存储/转换Java 8 ZonedDateTime
,因为我在我的实体中使用这种类型吗?
我在类路径上使用spring-boot:1.3.1 + spring-data-elasticsearch和jackson-datatype-jsr310。当我尝试保存ZonedDateTime
或Instant
或其他内容时,似乎也没有适用任何转换。
答案 0 :(得分:2)
这样做的一种方法是创建这样的自定义转换器:
import com.google.gson.*;
import java.lang.reflect.Type;
import java.time.ZonedDateTime;
import static java.time.format.DateTimeFormatter.*;
public class ZonedDateTimeConverter implements JsonSerializer<ZonedDateTime>, JsonDeserializer<ZonedDateTime> {
@Override
public ZonedDateTime deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext jsonDeserializationContext) throws JsonParseException {
return ZonedDateTime.parse(jsonElement.getAsString(), ISO_DATE_TIME);
}
@Override
public JsonElement serialize(ZonedDateTime zonedDateTime, Type type, JsonSerializationContext jsonSerializationContext) {
return new JsonPrimitive(zonedDateTime.format(ISO_DATE_TIME));
}
}
然后配置JestClientFactory
以使用此转换器:
Gson gson = new GsonBuilder()
.registerTypeAdapter(ZonedDateTime.class, new ZonedDateTimeConverter()).create();
JestClientFactory factory = new JestClientFactory();
factory.setHttpClientConfig(new HttpClientConfig
.Builder("elastic search URL")
.multiThreaded(true)
.gson(gson)
.build());
client = factory.getObject();
希望它能提供帮助。