遇到问题: Illegal instant due to time zone offset transition (Asia/Shanghai)
1988-4-10、1990-4-15字符串无法转换Date类型。表单类属性有如图
。此为时区问题导致无法转换。有如下解决方法,控制器继承Basecontroller即可。
package com.common.controller;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.validation.BindingResult;
import org.springframework.validation.ObjectError;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
public abstract class BaseController {
@InitBinder
protected void dateBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
CustomDateEditor editor = new CustomDateEditor(dateFormat, true);
binder.registerCustomEditor(Date.class, editor);
}
}

613

被折叠的 条评论
为什么被折叠?



