看起来Spring支持所有Java时间转换器减去分区日期时间转换器。您可以如下注册一个。
@Beanpublic CustomConversions customConversions(){ List<Converter<?,?>> converters = new ArrayList<Converter<?,?>>(); converters.add(new DateToZonedDateTimeConverter()); converters.add(new ZonedDateTimeToDateConverter()); return new CustomConversions(converters);}@Beanpublic MongoTemplate getMongoTemplate() throws UnknownHostException { MappingMongoConverter converter = new MappingMongoConverter( new DefaultDbRefResolver(getMongoDbFactory()), new MongoMappingContext()); converter.setCustomConversions(customConversions()); converter.afterPropertiesSet(); return new MongoTemplate(getMongoDbFactory(), converter);}class DateToZonedDateTimeConverter implements Converter<Date, ZonedDateTime> { @Override public ZonedDateTime convert(Date source) { return source == null ? null : ofInstant(source.toInstant(), systemDefault()); } }class ZonedDateTimeToDateConverter implements Converter<ZonedDateTime, Date> { @Override public Date convert(ZonedDateTime source) { return source == null ? null : Date.from(source.toInstant()); } }
另一种替代解决方案是仅使用ZonedDateTime并将其更改为日期,同时将其持久化到MongoDB中。您可以在获取时轻松地将其从日期改回分区日期时间。
以下是有助于转换的相关方法。
ZoneId zoneID = ZoneId.of("America/Chicago");
从ZonedDateTime到Java使用日期。
Instant instant = Instant.now();ZonedDateTime zonedDateTime = instant.atZone(zoneId);Date date = Date.from(zdt.toInstant());
从日期到ZonedDateTime
Instant instant = date.toInstant();ZonedDateTime zonedDateTime = instant.atZone(zoneId);
另一种选择是实现自定义编解码器以帮助进行转换。我已经在Mongo文档的筛选YearMonth中为YearMonth创建了一个。如果读者想为“区域日期时间”创建自定义编解码器,我将把它留给读者练习。
您可以将以下库用于基于编解码器的方法。
https://github.com/ylemoigne/mongo-jackson-
prec
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)