springBoot默认使用JackJson格式数据处理的格式处理
spring Boot默认使用JackJson作为json转换器,用于生成JSON格式数据,有时候它格式化的日期/日期时间(LocalDate/LocalDateTime)字段并不符合产品的需求js转换日期格式为yyyy-mm-dd,因此需要对它返回的json中的日期和日期时间类型的字段做自定义格式处理。
1、在字段上使用@JsonFormat
<pre class="has">`@JsonFormat(pattern = "yyyy-MM-dd")
private LocalDate birthday; // 生日
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime createTime; // 系统写入时间`</pre>
这种方式很灵活js转换日期格式为yyyy-mm-dd,但是由于我使用了MyBatis Generator自动生成数据层代码,不能修改自动生成的Model类,因为随时有可能会删除掉这份MyBatis Generator生成的数据层代码,然后重新再生成一份。
2、在application.properties 统一配置
(1)处理非java 8的日期类型
非Java 8的日期和日期时间类型,可以在application.properties做如下配置,全局范围控制日期时间的格式化
<pre class="has">`spring.jackson.time-zone=GMT+8
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
#spring.jackson.serialization.write-dates-as-timestamps=false`</pre>
(2)处理Java 8的日期类型
上述第一种配置对Java 8类型的日期和日期时间(LocalDate、LocalDateTime)不起效,只能处理遗留的日期格式(如java.util.Date),如果要处理Java 8的日期类型,需要在Spring Boot的SpringMvc配置类中定义Jackson的日期转换格式,如下所示:
<pre class="has">`
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
private static final String dateFormat = "yyyy-MM-dd";
private static final String dateTimeFormat = "yyyy-MM-dd HH:mm:ss";
@Bean
public Jackson2ObjectMapperBuilderCustomizer jsonCustomizer() {
return builder -> {
builder.simpleDateFormat(dateTimeFormat);
builder.serializers(new LocalDateSerializer(DateTimeFormatter.ofPattern(dateFormat)));
builder.serializers(new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(dateTimeFormat)));
};
}
pre>
这样定义之后,所有被Jackson转换为json格式的日期和日期时间都会统一按照上述代码定义的格式进行处理。
3、自定义JSON转换器来处理日期格式
通过自定义JSON转换器,去掉Spring Boot默认的Jackson-databind,引入FastJson作为新的JSON转换器,然后在自定义FastJson转换器的时候对日期时间进行格式化处理
(1)在pom中引入FastJson并屏蔽more的Jackson-databind
<pre class="has">`
org.springframework.[boot][3]
spring-boot-starter-web
com.fasterxml.jackson.core
jackson-databind
com.alibaba
[fastjson][4]
1.2.48
`</pre>
(2)配置 fastjson 的 HttpMessageConverter
<pre class="has">`package cn.org.xcore.edusys.config;
import com.alibaba.fastjson.support.config.FastJsonConfig;
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.nio.charset.Charset;
@Configuration
public class InitFastJsonConfig {
@Bean
FastJsonHttpMessageConverter fastJsonHttpMessageConverter () {
FastJsonHttpMessageConverter converter= new FastJsonHttpMessageConverter();
// 创建FastJson转换器的配置
FastJsonConfig config = new FastJsonConfig();
config.setDateFormat("yyyy-MM-dd HH:mm:ss"); // 设置日期格式
config.setCharset(Charset.forName("UTF-8")); // 设置编码格式
converter.setFastJsonConfig(config);
return converter;
}
}
`</pre>
通过这两步的配置,就启用了FastJson作为json转换器,并且设置了日期的格式为 yyyy-MM-dd HH:mm:ss
订单
发表评论
热门文章
Spimes主题专为博客、自媒体、资讯类的网站设计....
一款个人简历主题,可以简单搭建一下,具体也比较简单....
仿制主题,Typecho博客主题,昼夜双版设计,可....
用于作品展示、资源下载,行业垂直性网站、个人博客,....
尘集杂货铺和官网1t5-cn
11月11日
[已回复]
希望主题和播放器能支持SQLite数据库,AI能多个讯飞星火