日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

本文介紹了在Spring Data MongoDB for ZonedDateTime中注冊一個可審核的新日期轉(zhuǎn)換器的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

問題描述

我希望我的可審核(@CreatedDate@LastModifiedDate)MongoDB文檔使用ZonedDateTime字段。

顯然,Spring Data不支持此類型(請查看org.springframework.data.auditing.AnnotationAuditingMetadata)。

框架版本:Spring Boot 2.0.0Spring 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ù)方法中配置了JodaTimeConvertersJsr310ConvertersThreeTenBackPortConverters

自定義轉(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組件;
DateZonedDateTime創(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

OffsetDateTimeZonedDateTimeInstant都以納秒精度存儲時間線上的瞬間。Instant是最簡單的,簡單地表示瞬間。OffsetDateTime將UTC/格林威治的偏移量添加到該時刻,這允許獲取本地日期-時間。ZonedDateTime添加完整時區(qū)規(guī)則。

計劃使用ZonedDateTimeInstant對更簡單的應(yīng)用程序中的數(shù)據(jù)進行建模。在對日期-時間概念進行更詳細的建模時,或者在與數(shù)據(jù)庫或網(wǎng)絡(luò)協(xié)議進行通信時,可以使用此類。

這篇關(guān)于在Spring Data MongoDB for ZonedDateTime中注冊一個可審核的新日期轉(zhuǎn)換器的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,

分享到:
標簽:Data Spring ZonedDateTime 審核 日期 注冊 轉(zhuǎn)換器
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運動步數(shù)有氧達人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定