| | |
| | | package com.ruoyi.framework.config; |
| | | |
| | | import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer; |
| | | import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer; |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Configuration; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.time.format.DateTimeFormatter; |
| | | |
| | | @Configuration |
| | | public class LocalDateTimeSerializerConfig { |
| | | @Value("${spring.jackson.date-format}") |
| | | private String pattern; |
| | | |
| | | @Bean |
| | | public LocalDateTimeSerializer localDateTimeSerializer() { |
| | | return new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(pattern)); |
| | | } |
| | | |
| | | @Bean |
| | | public LocalDateTimeDeserializer localDateTimeDeserializer() { |
| | | return new LocalDateTimeDeserializer(DateTimeFormatter.ofPattern(pattern)); |
| | | } |
| | | |
| | | @Bean |
| | | public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer() { |
| | | return builder -> { |
| | | builder.serializerByType(LocalDateTime.class, localDateTimeSerializer()); |
| | | builder.deserializerByType(LocalDateTime.class, localDateTimeDeserializer()); |
| | | builder.simpleDateFormat(pattern); |
| | | }; |
| | | } |
| | | } |
| | | //package com.ruoyi.framework.config; |
| | | // |
| | | //import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer; |
| | | //import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer; |
| | | //import org.springframework.beans.factory.annotation.Value; |
| | | //import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer; |
| | | //import org.springframework.context.annotation.Bean; |
| | | //import org.springframework.context.annotation.Configuration; |
| | | // |
| | | //import java.time.LocalDateTime; |
| | | //import java.time.format.DateTimeFormatter; |
| | | // |
| | | //@Configuration |
| | | //public class LocalDateTimeSerializerConfig { |
| | | // @Value("${spring.jackson.date-format}") |
| | | // private String pattern; |
| | | // |
| | | // @Bean |
| | | // public LocalDateTimeSerializer localDateTimeSerializer() { |
| | | // return new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(pattern)); |
| | | // } |
| | | // |
| | | // @Bean |
| | | // public LocalDateTimeDeserializer localDateTimeDeserializer() { |
| | | // return new LocalDateTimeDeserializer(DateTimeFormatter.ofPattern(pattern)); |
| | | // } |
| | | // |
| | | // @Bean |
| | | // public Jackson2ObjectMapperBuilderCustomizer jackson2ObjectMapperBuilderCustomizer() { |
| | | // return builder -> { |
| | | // builder.serializerByType(LocalDateTime.class, localDateTimeSerializer()); |
| | | // builder.deserializerByType(LocalDateTime.class, localDateTimeDeserializer()); |
| | | // builder.simpleDateFormat(pattern); |
| | | // }; |
| | | // } |
| | | //} |