springboot web返回Map,key为LocalDateTime时,时间格式处理

    @GetMapping("/test")
    public Map<LocalDateTime, LocalDateTime> fetchEvents() {
        Map<LocalDateTime,LocalDateTime> map = new HashMap<>();
        map.put(LocalDateTime.now(),LocalDateTime.now());
        return map;
    }

以上接口默认返回格式为 ISO-8601 格式,例如 2022-02-23T14:30:00.000

以下代码来修改springboot web应该LocalDatetime的返回格式,如果:LocalDateTime要作为Map的key时要单独添加module进行格式化处理

import java.io.IOException;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;

public class LocalDateTimeKeySerializer extends JsonSerializer<LocalDateTime> {
    private static final String PATTERN = "yyyy-MM-dd HH:mm:ss";
    private static final DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern(PATTERN);

    @Override
    public void serialize(LocalDateTime value, JsonGenerator gen, SerializerProvider serializers) throws IOException {
        gen.writeFieldName(FORMATTER.format(value));
    }
}
@Configuration
public class JacksonConfiguration {
    private static final String PATTERN = "yyyy-MM-dd HH:mm:ss";
    @Bean
    public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer() {
        return builder -> {
            builder.serializerByType(LocalDateTime.class, new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(PATTERN)));
            builder.deserializerByType(LocalDateTime.class, new LocalDateTimeDeserializer(DateTimeFormatter.ofPattern(PATTERN)));
            SimpleModule module = new SimpleModule();
            //添加对Map key的序列化
            module.addKeySerializer(LocalDateTime.class, new LocalDateTimeKeySerializer());
            builder.modules(module);
        };

    }
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值