当前位置:  开发笔记 > 编程语言 > 正文

Spring Boot中OffsetDateTime的Jackson日期格式

如何解决《SpringBoot中OffsetDateTime的Jackson日期格式》经验,为你挑选了1个好方法。

我正在尝试从Spring应用程序输出OffsetDateTime,并在我的application.properties中有这些属性:

spring.jackson.serialization.WRITE_DATES_AS_TIMESTAMPS=false
spring.jackson.date-format=yyyy-MM-dd'T'HH:mm

但是,当返回日期时,它的格式为

"2017-01-30T16:55:00Z"

我应该如何在Spring应用程序中正确配置日期格式?



1> Dave..:

所以我设法找到了解决方案,但如果您有其他选择请发布.

我最终创建了一个新的主ObjectMapperbean,并注册了一个带有自定义序列化程序的新模块OffsetDateTime.我可以在这里设置我自己的日期格式,使用java.time.format.DateTimeFormatter.我还必须在JavaTimeModule我的映射器中注册.

@Configuration
public class JacksonOffsetDateTimeMapper{

    @Primary
    @Bean
    public ObjectMapper objectMapper() {

        ObjectMapper objectMapper = new ObjectMapper();
        objectMapper.registerModule(new JavaTimeModule());
        SimpleModule simpleModule = new SimpleModule();
        simpleModule.addSerializer(OffsetDateTime.class, new JsonSerializer() {
            @Override
            public void serialize(OffsetDateTime offsetDateTime, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException, JsonProcessingException {
                jsonGenerator.writeString(DateTimeFormatter.ISO_LOCAL_DATE_TIME.format(offsetDateTime));
            }
        });
        objectMapper.registerModule(simpleModule);

        return objectMapper;
    }

}

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有