本文介紹了在Spring Data MongoDB for ZonedDateTime中注冊一個可審核的新日期轉(zhuǎn)換器的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我希望我的可審核(@CreatedDate
和@LastModifiedDate
)MongoDB文檔使用ZonedDateTime
字段。
顯然,Spring Data不支持此類型(請查看org.springframework.data.auditing.AnnotationAuditingMetadata
)。
框架版本:Spring Boot 2.0.0和Spring Data MongoDB 2.0.0
Spring數(shù)據(jù)審核錯誤:
java.lang.IllegalArgumentException: Invalid date type for member <MEMBER NAME>!
Supported types are [org.joda.time.DateTime, org.joda.time.LocalDateTime, java.util.Date, java.lang.Long, long].
Mongo配置:
@Configuration
@EnableMongoAuditing
public class MongoConfiguration {
}
可審計實體:
public abstract class BaseDocument {
@CreatedDate
private ZonedDateTime createdDate;
@LastModifiedDate
private ZonedDateTime lastModifiedDate;
}
我嘗試的內(nèi)容
我還嘗試為ZonedDateTime
創(chuàng)建自定義轉(zhuǎn)換器,但Spring data不考慮它。類DateConvertingAuditableBeanWrapper
有一個ConversionService
,它在構(gòu)造函數(shù)方法中配置了JodaTimeConverters
、Jsr310Converters
和ThreeTenBackPortConverters
。
自定義轉(zhuǎn)換器:
@Component
public class LocalDateTimeToZonedDateTimeConverter implements Converter<LocalDateTime, ZonedDateTime> {
@Override
public ZonedDateTime convert(LocalDateTime source) {
return source.atZone(ZoneId.systemDefault());
}
}
Spring Data DateConvertingAuditableBeanWrapper:
class DefaultAuditableBeanWrapperFactory implements AuditableBeanWrapperFactory {
abstract static class DateConvertingAuditableBeanWrapper implements AuditableBeanWrapper {
private final ConversionService conversionService;
}
}
是否可以審核ZonedDateTime
個字段?
如何注冊轉(zhuǎn)換器?
推薦答案
創(chuàng)建DateTimeProvider
以提供審核時使用的當前時間:
@Component("dateTimeProvider")
public class CustomDateTimeProvider implements DateTimeProvider {
@Override
public Optional<TemporalAccessor> getNow() {
return Optional.of(ZonedDateTime.now());
}
}
然后:
引用@EnableMongoAuditing
批注中的DateTimeProvider
組件;
為Date
和ZonedDateTime
創(chuàng)建Converter
;
將Converter
實例添加到MongoCustomConversions
實例;
將MongoCustomConversions
實例公開為@Bean
。
@Configuration
@EnableMongoAuditing(dateTimeProviderRef = "dateTimeProvider")
public class MongoConfiguration {
@Bean
public MongoCustomConversions customConversions() {
List<Converter<?, ?>> converters = new ArrayList<>();
converters.add(new DateToZonedDateTimeConverter());
converters.add(new ZonedDateTimeToDateConverter());
return new MongoCustomConversions(converters);
}
class DateToZonedDateTimeConverter implements Converter<Date, ZonedDateTime> {
@Override
public ZonedDateTime convert(Date source) {
return source == null ? null :
ZonedDateTime.ofInstant(source.toInstant(), ZoneId.systemDefault());
}
}
class ZonedDateTimeToDateConverter implements Converter<ZonedDateTime, Date> {
@Override
public Date convert(ZonedDateTime source) {
return source == null ? null : Date.from(source.toInstant());
}
}
}
但是,我不會將ZonedDateTime
用于此目的。我會堅持OffsetDateTime
:
OffsetDateTime
、ZonedDateTime
和Instant
都以納秒精度存儲時間線上的瞬間。Instant是最簡單的,簡單地表示瞬間。OffsetDateTime
將UTC/格林威治的偏移量添加到該時刻,這允許獲取本地日期-時間。ZonedDateTime
添加完整時區(qū)規(guī)則。計劃使用
ZonedDateTime
或Instant
對更簡單的應(yīng)用程序中的數(shù)據(jù)進行建模。在對日期-時間概念進行更詳細的建模時,或者在與數(shù)據(jù)庫或網(wǎng)絡(luò)協(xié)議進行通信時,可以使用此類。
這篇關(guān)于在Spring Data MongoDB for ZonedDateTime中注冊一個可審核的新日期轉(zhuǎn)換器的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,