标签:control ring mat rcu abi ati tab 后台 pre
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import java.text.SimpleDateFormat;
import java.util.Date;
Spring MVC 框架
公共父类controller类(ParentController )添加以下方法
/**
* 前台日期格式转换为Date格式
* 日期格式:yyyy-MM-dd,第二个参数为是否为空 true代表可以为空
* @param binder
*/
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
使用thymeleaf框架,前台日期格式是字符串,后台不能以Date格式接收解决
标签:control ring mat rcu abi ati tab 后台 pre
原文地址:http://www.cnblogs.com/mcybsy/p/7372607.html