关于前后台日期格式化问题 ,@JsonFormat、@JSONField、@DateTimeFormat

大家都知道可能前台表单提交后台 ,或者后台 实体类json 序列化到前台可能格式不是我们想要的情况 ,这时候可能就需要上面三个注解来帮忙 ,但是 ,本人在项目使用过程中 使用@JsonField 一直失效 ,百思不得其解 ,难道是 在springboot 不能使用 ?
一番折腾后 ,注入fastjson 的 httpMessageConverter 解决,而之间的在实体类属性上的注解也可以删除了

关于前后台日期格式化问题 ,@JsonFormat、@JSONField、@DateTimeFormat_第1张图片
// 格式化前台返回日期格式
@Bean
public HttpMessageConverters fastJsonConfigure() {
FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter();
FastJsonConfig fastJsonConfig = new FastJsonConfig();
//日期格式化
fastJsonConfig.setDateFormat(“yyyy-MM-dd”);
converter.setFastJsonConfig(fastJsonConfig);
return new HttpMessageConverters(converter);

你可能感兴趣的:(关于前后台日期格式化问题 ,@JsonFormat、@JSONField、@DateTimeFormat)