《将前端时间传递到后台时,因时间格式出现400错误时解决方法》

通过添加注释,解决前端网页向后台提交数据时,因时间格式的问题,造成在提交过程中,造成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方法中添加注释。
在这里插入图片描述
需要导入
在这里插入图片描述
完毕。

你可能感兴趣的:(布丁加辣)