当前位置 : 主页 > 编程语言 > c++ >

SpringMvc接收Date类型参数

来源:互联网 收集:自由互联 发布时间:2021-07-03
gistfile1.txt @InitBinderpublic void init(HttpServletRequest request, ServletRequestDataBinder binder) throws Exception { SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");// dateFormat.setLenient(false); binder.regi
gistfile1.txt
@InitBinder
public void init(HttpServletRequest request, ServletRequestDataBinder binder) throws Exception {
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//
    dateFormat.setLenient(false);
    binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, false));//把Date类型全部格式化
    // initDataBinder(request, binder);
}
网友评论