springboot@ResponseBody转换JSON时Date类型处理⽅
法,Jack。。。
spring boot @ResponseBody转换JSON 时 Date 类型处理⽅法,这⾥⼀共有两种不同解析⽅式(Jackson和FastJson两种⽅式,springboot 我⽤的1.x的版本)
第⼀种⽅式:默认的json处理是 jackson 也就是对configureMessageConverters 没做配置时
mybatis数据查询返回的时间,是⼀串数字,如何转化成时间。两种⽅法,推荐第⼀种
⽅法⼀:
可以在apllication.property加⼊下⾯配置就可以
#时间戳统⼀转换
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+8
⽅法⼆:
@JsonFormat(timezone = "GMT+8", pattern = "yyyyMMddHHmmss")
private Date createTime;
第⼆种⽅式:当configureMessageConverters 配置为FasJson处理时;
⽅法⼀:全局配置: fastJsonConfig.setDateFormat("yyyy-MM-dd HH:mm:ss");
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
FastJsonConfig fastJsonConfig = new FastJsonConfig();
fastJsonConfig.setSerializerFeatures(
SerializerFeature.WriteNullListAsEmpty,
SerializerFeature.WriteMapNullValue,
SerializerFeature.WriteNullStringAsEmpty
);
//此处是全局处理⽅式
fastJsonConfig.setDateFormat("yyyy-MM-dd HH:mm:ss");
fastConverter.setFastJsonConfig(fastJsonConfig);
List<MediaType> supportedMediaTypes = new ArrayList<MediaType>();
supportedMediaTypes.add(MediaType.ALL); // 全部格式
fastConverter.setSupportedMediaTypes(supportedMediaTypes);
converters.add(fastConverter);
}
}
⽅法⼆:在所需要的字段上配置(⽐较灵活的⽅式,根据不同需求转换):
@JSONField(format="yyyyMMdd")
private Date createTime;
说明:这⾥如果字段和全局都配置了,最后是以全局转换
扩展:
重要补充:
当springboot版本是2.0.9以上配置fastjson不⽣效解决如下:
import com.alibaba.fastjson.serializer.SerializerFeature;
import com.alibaba.fig.FastJsonConfig;
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
import org.springframework.boot.autoconfigure.http.HttpMessageConverters;
import t.annotation.Bean;
import t.annotation.Configuration;
import org.springframework.http.MediaType;
string转date的方法import org.verter.StringHttpMessageConverter;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.List;
@Configuration
public class MyConfiguration {
@Bean
public HttpMessageConverters customConverters() {
FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
// 创建配置类
FastJsonConfig config = new FastJsonConfig();
config.setSerializerFeatures(
SerializerFeature.WriteNullListAsEmpty,
SerializerFeature.WriteMapNullValue,
SerializerFeature.WriteNullStringAsEmpty
);
/
/此处是全局处理⽅式
config.setDateFormat("yyyy-MM-dd HH:mm:ss");
config.setCharset(Charset.forName("UTF-8"));
fastConverter.setFastJsonConfig(config);
List<MediaType> supportedMediaTypes = new ArrayList<>();
supportedMediaTypes.add(MediaType.ALL);
fastConverter.setSupportedMediaTypes(supportedMediaTypes);
//⽀持text 转string
StringHttpMessageConverter stringHttpMessageConverter = new StringHttpMessageConverter();
return new HttpMessageConverters(fastConverter, stringHttpMessageConverter);
}
三、当@Requestbody接收参数和@Responsebody返回参数时间格式不⼀致可以⾃定义序列化⽅式()要注意;引⼊的包是 com.fasterxml.jackson.databind.annotation.JsonSerialize
同样的还可以反序列化(J)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论