标签:
框架spring+springMVC+mybatis,
前台给后台传数据传不了时分秒,所以用springMVC的注解解决了,记录一下
controller中如下:
/**
*
* 方法描述 : 使用@InitBinder 标签对表单数据绑定
* @param binder
*/
@InitBinder//spring mvc使用@InitBinder 标签对表单数据绑定
public void initBinder(WebDataBinder binder) {//WebDataBinder是用来绑定请求参数到指定的属性编辑器
binder.registerCustomEditor(Date.class, new DateConvertEditor("yyyy-MM-dd HH:mm:ss"));
}
mybatis前台传给带年月日时分秒的数据给后台,后台接收不到时分秒
标签:
原文地址:http://www.cnblogs.com/zrui-xyu/p/4650394.html