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

web提交spring无法解析时分秒

来源:互联网 收集:自由互联 发布时间:2021-06-28
gistfile1.txt /** * form表单提交 Date类型数据绑定 * 功能详细描述 * @param binder * @see [类、类#方法、类#成员] */ @InitBinder public void initBinder(WebDataBinder binder) { SimpleDateFormat dateFormat = new SimpleDa
gistfile1.txt
/**
     * form表单提交 Date类型数据绑定
     * <功能详细描述>
     * @param binder
     * @see [类、类#方法、类#成员]
     */
    @InitBinder
    public void initBinder(WebDataBinder binder) {
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        dateFormat.setLenient(false);
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
    }
网友评论