spring mvc 前台到后台 时间类型是怎样处理的
1个回答
2014-11-30
展开全部
1、注解的话就是 在控制器里 整一个方法
protected void initBinder(HttpServletRequest request,
ServletRequestDataBinder binder) throws Exception {
// DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
CustomDateEditor dateEditor = new CustomDateEditor(format, true);
binder.registerCustomEditor(Date.class, dateEditor);
super.initBinder(request, binder);
}
2、搞配置的话 我记得是写一个转换器类 配置在mvc:annotation-driven的前面。 类名好像是AnnotationMethodHandler-- !
protected void initBinder(HttpServletRequest request,
ServletRequestDataBinder binder) throws Exception {
// DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
CustomDateEditor dateEditor = new CustomDateEditor(format, true);
binder.registerCustomEditor(Date.class, dateEditor);
super.initBinder(request, binder);
}
2、搞配置的话 我记得是写一个转换器类 配置在mvc:annotation-driven的前面。 类名好像是AnnotationMethodHandler-- !
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询