@JsonFormat与@DateTimeFormat注解的使用
@JsonFormat(pattern=“yyyy-MM-dd”,timezone = “GMT+8”)
pattern:是你需要转换的时间日期的格式
timezone:是时间设置为东八区,避免时间在转换中有误差
JsonFormat主要是后台到前台的时间格式的转换
例如数据库数据格式为:2020-09-22 08:37:10 前端页面要展示:yyyy/MM/dd HH:mm:ss
则可以使用注解 @JsonFormat(pattern = “yyyy/MM/dd HH:mm:ss”,timezone=“GMT+8”)
@DateTimeFormat作用是前后到后台的时间格式的转换,使用"yyyy-MM-dd"格式的字符串传入日期类型数据是入参转换没有问题,使用"yyyy-MM-dd HH:mm:ss"格式时间字符串就会报错
原因是springboot默认采用jackson,而jackson只能识别以下几种日期格式
“yyyy-MM-dd’T’HH:mm:”;
“yyyy-MM-dd’T’HH:mm:’Z’”;
“yyyy-MM-dd”;
“EEE, dd MMM yyyy HH:mm:ss zzz”;
long类型的时间戳(毫秒时间戳)
解决办法有以下几种:
1.、采用long时间戳,如:1537191968000
2、在传参的对象上加上@JsonFormat注解并且指定时区
@JsonFormat(locale=“zh”, timezone=“GMT+8”, pattern=“yyyy-MM-dd HH:mm:ss”)
如果项目中使用json解析框架为fastjson框架,在实体字段上使用@JsonFormat注解格式化日期
@JsonFormat(shape=, pattern=“yyyy-MM-dd HH:mm:ss”)
3、采用全局处理方式统一处理,推荐这个做法,重写springboot默认转换
@Configuration
public class WebConfig {
@Autowired
private Jackson2ObjectMapperBuilder jackson2ObjectMapperBuilder;
@Bean
public MappingJackson2HttpMessageConverter MappingJsonpHttpMessageConverter() {
ObjectMapper mapper = jackson2ObjectMapperBuilder.build();
// ObjectMapper为了保障线程安全性,里面的配置类都是一个不可变的对象
// 所以这里的setDateFormat的内部原理其实是创建了一个新的配置类
DateFormat dateFormat = mapper.getDateFormat();
mapper.setDateFormat(new MyDateFormat(dateFormat));
MappingJackson2HttpMessageConverter mappingJsonpHttpMessageConverter = new MappingJackson2HttpMessageConverter(
mapper);
return mappingJsonpHttpMessageConverter;
}
}
@Configuration
public class WebConfig {
@Autowired
private Jackson2ObjectMapperBuilder jackson2ObjectMapperBuilder;
@Bean
public MappingJackson2HttpMessageConverter MappingJsonpHttpMessageConverter() {
ObjectMapper mapper = jackson2ObjectMapperBuilder.build();
// ObjectMapper为了保障线程安全性,里面的配置类都是一个不可变的对象
// 所以这里的setDateFormat的内部原理其实是创建了一个新的配置类
DateFormat dateFormat = mapper.getDateFormat();
mapper.setDateFormat(new MyDateFormat(dateFormat));
MappingJackson2HttpMessageConverter mappingJsonpHttpMessageConverter = new MappingJackson2HttpMessageConverter(
mapper);
return mappingJsonpHttpMessageConverter;
}
}
参考/qq906627950/article/details/79503801