springboot 前端参数string 转换为后台date类型,后台返回前端date类型转换为String类型
1.编写格式转换器加@Compent 实现注入springboot 容器package com.example.spdemo.common;import org.springframework.core.convert.converter.Converter;import org.springframework.stereotype.Component;import java.te...
·
1.编写格式转换器加@Compent 实现注入springboot 容器
package com.example.spdemo.common;
import org.springframework.core.convert.converter.Converter;
import org.springframework.stereotype.Component;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* 自定义格式转换器
* Stirng 转为Date
*/
@Component
public class MyDateConverter implements Converter<String, Date> {
@Override
public Date convert(String s) {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
try {
return format.parse(s);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
}
2.后端返回值date转string并指定格式,当字段为null 不显示该字段的配置
在application.properties配置文件添加
返回json串配置
#时间戳统一转换
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+8
spring.jackson.serialization.write_dates_as_timestamps: false
spring.jackson.default-property-inclusion: non_null
更多推荐
已为社区贡献2条内容
所有评论(0)