SpringBoot 解决前台传递日期类型字符串转换问题
2020-12-26 本文已影响0人
落雪无尘V
1.放在controller中
/**
* 解决前台传递日期类型字符串转换问题
* @param bin
*/
@InitBinder
public void initBinder(ServletRequestDataBinder bin){
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
CustomDateEditor cust = new CustomDateEditor(sdf,true);
bin.registerCustomEditor(Date.class,cust);
}
2.在配置文件中配置
spring.mvc.format.date-time=yyyy-MM-dd HH:mm:ss