spring mvc 前台到后台 时间类型是怎样处理的?传date类型时报错 org.springframework.validation.BindException,
传对象(对象中属性是存在date类型的)也是报一样的错,至于传string来,再转为date的方法就不用在这说了。求教!!!
1、注解的话就是在控制器里整一个方法
@InitBinder protectedvoidinitBinder(HttpServletRequestrequest,ServletRequestDataBinderbinder)throwsException{//DateFormatformat=newSimpleDateFormat("yyyy-MM-ddHH:mm:ss");DateFormatformat=newSimpleDateFormat("yyyy-MM-dd");CustomDateEditordateEditor=newCustomDateEditor(format,true);binder.registerCustomEditor(Date.class,dateEditor);super.initBinder(request,binder);}2、搞配置的话我记得是写一个转换器类 配置在mvc:annotation-driven的前面。类名好像是AnnotationMethodHandler-- 忘了 你再查查吧
<%@tagliburi="http://java.sun.com/jsp/jstl/fmt"prefix="fmt"%><fmt:formatDatevalue="${job.jobtime}"pattern="yyyy-MM-ddHH:mm:ss"/> sorry,看反了....@DateTimeFormat(pattern="yyyy-MM-ddHH:mm:ss")privateDatelastLoginDate;
oracle数据库的时候失效了!这个方法好,可以针对不同的样子进行调整学习了顺便一个连接http://www.developer.com/java/web/article.php/3879471/Spring-Framework-30-and-Annotation-driven-Formatting.htm还有这简单的方法? http://stackoverflow.com/questions/3705282/spring-mvc-binding-a-date-field @InitBinder publicvoidinitBinder(WebDataBinderbinder){ SimpleDateFormatdateFormat=newSimpleDateFormat("yyyy-MM-dd"); dateFormat.setLenient(false); binder.registerCustomEditor(Date.class,newCustomDateEditor(dateFormat,true)); //true:允许输入空值,false:不能为空值 }版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。