`

spring mvc绑定对象String转Date

 
阅读更多

学习笔记,转自:http://blog.csdn.net/whumr1/article/details/8056285

 

使用spring的mvc,直接将页面参数绑定到对象中,对象中有属性为Date时会报错,此时需要处理下。

同样的,其他的需要处理的类型也可以用这种方法。

在controller中加入代码

 

[java] view plaincopy
  1. @InitBinder  
  2. protected void initBinder(HttpServletRequest request,  
  3.                               ServletRequestDataBinder binder) throws Exception {  
  4.     //对于需要转换为Date类型的属性,使用DateEditor进行处理  
  5.     binder.registerCustomEditor(Date.classnew DateEditor());  
  6. }  


DateEditor为自定义的处理类,继承自PropertyEditorSupport,处理方法为public void setAsText(String text) throws IllegalArgumentException

 

 

[java] view plaincopy
  1. import org.springframework.util.StringUtils;  
  2.   
  3. import java.beans.PropertyEditorSupport;  
  4. import java.text.DateFormat;  
  5. import java.text.ParseException;  
  6. import java.text.SimpleDateFormat;  
  7. import java.util.Date;  
  8.   
  9. public class DateEditor extends PropertyEditorSupport {  
  10.   
  11.     private static final DateFormat DATEFORMAT = new SimpleDateFormat("yyyy-MM-dd");  
  12.     private static final DateFormat TIMEFORMAT = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
  13.   
  14.     private DateFormat dateFormat;  
  15.     private boolean allowEmpty = true;  
  16.   
  17.     public DateEditor() {  
  18.     }  
  19.   
  20.     public DateEditor(DateFormat dateFormat) {  
  21.         this.dateFormat = dateFormat;  
  22.     }  
  23.   
  24.     public DateEditor(DateFormat dateFormat, boolean allowEmpty) {  
  25.         this.dateFormat = dateFormat;  
  26.         this.allowEmpty = allowEmpty;  
  27.     }  
  28.   
  29.     /** 
  30.      * Parse the Date from the given text, using the specified DateFormat. 
  31.      */  
  32.     @Override  
  33.     public void setAsText(String text) throws IllegalArgumentException {  
  34.         if (this.allowEmpty && !StringUtils.hasText(text)) {  
  35.             // Treat empty String as null value.  
  36.             setValue(null);  
  37.         } else {  
  38.             try {  
  39.                 if(this.dateFormat != null)  
  40.                     setValue(this.dateFormat.parse(text));  
  41.                 else {  
  42.                     if(text.contains(":"))  
  43.                         setValue(TIMEFORMAT.parse(text));  
  44.                     else  
  45.                         setValue(DATEFORMAT.parse(text));  
  46.                 }  
  47.             } catch (ParseException ex) {  
  48.                 throw new IllegalArgumentException("Could not parse date: " + ex.getMessage(), ex);  
  49.             }  
  50.         }  
  51.     }  
  52.   
  53.     /** 
  54.      * Format the Date as String, using the specified DateFormat. 
  55.      */  
  56.     @Override  
  57.     public String getAsText() {  
  58.         Date value = (Date) getValue();  
  59.         DateFormat dateFormat = this.dateFormat;  
  60.         if(dateFormat == null)  
  61.             dateFormat = TIMEFORMAT;  
  62.         return (value != null ? dateFormat.format(value) : "");  
  63.     }  
  64. }  


 

分享到:
评论

相关推荐

    spring mvc3.1.0 日期自动转换

    Spring MVC 3.1.0通过提供数据绑定(Data Binding)和类型转换(Type Conversion)机制,简化了这个过程。 1. 数据绑定:Spring MVC的数据绑定允许我们直接将HTTP请求参数映射到控制器方法的参数上。例如,一个`@...

    spring mvc注释文档

    name=John&age=30`,那么可以在处理方法中直接声明形如`@RequestParam String name, @RequestParam int age`这样的参数,Spring MVC会自动将URL中的参数值绑定到这些参数上。 #### 清单 5. 按参数名匹配进行绑定 ...

    Spring_MVC_3.0实战指南

    - **与数据转换、格式化、验证框架无缝集成**:Spring MVC 3.0 可以更好地与 Spring 的数据绑定、转换和验证机制集成,提供了更加强大和灵活的数据处理能力。 - **对静态资源处理提供特殊支持**:Spring MVC 3.0 对...

    spring_-mvc-master.zip

    Spring MVC提供了对输入数据的自动转换和输出数据的格式化功能,如String到Date的转换,数字的格式化等。 10. **Spring MVC配置** 创建Spring MVC项目时,我们需要配置Spring的XML或Java配置文件,定义...

    深入理解Spring MVC的数据转换

    在Spring MVC中,数据绑定是指将Request中的信息转换并绑定到处理方法的参数上。这个过程的核心是由DataBinder完成的。DataBinder会从ServletRequest中获取参数信息,然后获取处理方法的参数,并调用...

    Spring MVC注解与数据绑定(含源码及结果图)

    1、有如下一个订单信息页面order.jsp(置于/WEB-INF/jsp目录下),按以下步骤实现一个使用POJO类型完成表单数据传输的SpringMVC数据绑定项目。 (1) 创建一个Order类来封装上述订单信息,其中各个属性的名称和数据类型...

    Spring MVC之@RequestMapping详解

    《Spring MVC之@RequestMapping详解》 在Java Web开发中,Spring MVC框架因其强大的功能和灵活性而备受青睐。在处理HTTP请求时,@RequestMapping注解扮演着至关重要的角色,它负责将客户端的请求映射到控制器中的...

    springmvc第二天课堂笔记.docx

    如日期类型绑定,可以定义一个 Converter<String, Date> 接口实现类来将请求的日期数据串转成 Java 中的日期类型。 九、Spring MVC 和 Struts2 的区别 Spring MVC 和 Struts2 是两个不同的 MVC 框架,Spring MVC ...

    spring mvc使用@InitBinder标签对表单数据绑定的方法

    Spring MVC 框架中, Bean 中定义了 Date、double 等类型,如果没有做任何处理的话,日期以及 double 都无法绑定。这是因为 Spring MVC 框架中的数据绑定机制是通过 PropertyEditor 来实现的,而 PropertyEditor ...

    扩展SpringMVC以支持更精准的数据绑定1

    在默认情况下,Spring MVC使用`WebDataBinder`来处理数据绑定,它可以将请求参数与Java对象的字段进行匹配,并通过类型转换器(`Converter`)和格式化器(`Formatter`)将字符串值转化为对象类型。如果遇到无法直接...

    springmvc类型转换.md

    ### Spring MVC 类型转换 #### 一、Spring MVC 类型转换概述 在Spring MVC框架中,类型转换(Type Conversion)是一项非常重要的功能。它能够帮助开发者处理请求参数与控制器方法参数之间的类型匹配问题,简化了...

    专题资料(2021-2022年)SpringMVC数据类型转换要点.doc

    public String handleExample(@RequestParam("date") @DateTimeFormat(pattern = "yyyy-MM-dd") LocalDate date) { // 处理逻辑 } ``` 在这个例子中,`@RequestParam`自动触发类型转换,`@DateTimeFormat`指定日期...

    ssm_springmvc_canshu

    "ssm_springmvc_canshu"这个标题暗示我们关注的是Spring MVC中关于参数绑定的问题,特别是涉及日期类型的转换。描述中提到,由于日期数据可以有多种不同的格式,Spring MVC默认的参数绑定机制无法直接将字符串参数...

    springmvc第二天课堂笔记.pdf

    总结一下,Spring MVC的核心组件包括DispatcherServlet、HandlerMapping、HandlerAdapter、Handler、ModelAndView、ViewResolver和各种参数绑定机制。通过这些组件,开发者可以方便地构建RESTful API和复杂的Web应用...

    springmvc注解式控制器的数据验证、类型转换及格式化 SpringMVC数据验证

    默认情况下,Spring MVC提供了一些内置的转换器,可以处理基本类型和简单对象的转换。 然后,**格式化** 主要涉及到输出数据的展示形式。Spring MVC允许我们在模型属性上使用`@DateTimeFormat`、`@NumberFormat`等...

    [Spring MVC] -简单表单提交实例

    在Spring MVC框架中,表单提交是Web应用中常见的用户交互方式。本篇文章将深入探讨一个简单的表单提交实例,帮助开发者理解如何在Spring MVC环境中处理表单数据。 首先,我们来看User模型类,它是表单数据的载体。...

    SpringMVC 参数绑定意义及实现过程解析

    但是,因为输入的 birthday 是 String 类型,而实体类中的 birthday 是 Date 类型,因此需要进行参数类型绑定。 参数绑定主要包括两步:第一步是新建一个类实现 Converter 接口,以便于将 String 类型转换成 Date ...

    spring3.0注解

    Spring MVC提供@ModelAttribute注解来处理表单数据,它可以把表单数据自动绑定到控制器方法的参数中。例如,如果有一个User类,可以这样绑定: ```java @PostMapping("/saveUser") public String save(@...

    springmvc 尚硅谷资料整理

    - 在Spring MVC中,可以通过`@PathVariable`注解将URL中的路径变量绑定到方法参数上。例如: ```java @RequestMapping("/delete/{id}") public String delete(@PathVariable("id") Integer id){ System.out....

Global site tag (gtag.js) - Google Analytics