通过添加注释,解决前端网页向后台提交数据时,因时间格式的问题,造成在提交过程中,造成400错误。错误如下
如果是因为时间格式问题造成的400(Bad Request)错误,可以尝试小博的方法。
在实体类中,添加注释。@DateTimeFormat(pattern = “yyyy-MM-dd HH:mm:ss”)
@Column(name=“在数据库中匹配的字段”)
需要导入
同时在Controller控制层中,添加如下代码,直接复制即可。
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
sdf.setLenient(false);
binder.registerCustomEditor(Date.class, new CustomDateEditor(sdf, true));
}
需要导入
另外,如果在调用数据库的Date时间返回到后台时出现错误,可以在实体类中对应的get方法中添加注释。
需要导入
完毕。