Failed to convert property value of type [java.lang.String] to required type [java.util.Date]
程序员文章站
2022-05-28 12:24:02
...
在核心控制器controller中加入以下代码:
@InitBinder
public void initBinder(WebDataBinder binder, WebRequest request) {
//转换日期
DateFormat dateFormat=new SimpleDateFormat("yyyy-MM-dd");
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));// CustomDateEditor为自定义日期编辑器
}
上一篇: QLExpress规则引擎实例