Spring中为bean注入Date对象

简介:

比如我们有下面的一个bean:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.util.Date;
  
public class Customer {
  
     Date date;
  
     public Date getDate() {
         return date;
     }
  
     public void setDate(Date date) {
         this.date = date;
     }
  
     @Override
     public String toString() {
         return "Customer [date=" + date + "]";
     }
  
}

  注意我们上面的bean中有一个Date,但是如果我们使用下面的配置:

1
2
3
4
5
6
7
8
9
10
< beans  xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
  
     < bean  id="customer" class="com.mkyong.common.Customer">
         < property  name="date" value="2010-01-31" />
     </ bean >
  
</ beans >

  然后我们尝试着运行的话

1
2
3
4
5
6
7
8
9
10
public  class  App {
     public  static  void  main(String[] args) {
         ApplicationContext context =  new  ClassPathXmlApplicationContext(
                 "SpringBeans.xml" );
  
         Customer cust = (Customer) context.getBean( "customer" );
         System.out.println(cust);
  
     }
}

会出现如下的错误:

Caused by: org.springframework.beans.TypeMismatchException: 
	Failed to convert property value of type [java.lang.String] to 
	required type [java.util.Date] for property 'date'; 
 
nested exception is java.lang.IllegalArgumentException: 
	Cannot convert value of type [java.lang.String] to
	required type [java.util.Date] for property 'date': 
	no matching editors or conversion strategy foun
在这里提供两种解决办法:

1. Factory bean

声明一个dateFormat的bean,然后引用。如下解决:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
< beans  xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
  
     < bean  id="dateFormat" class="java.text.SimpleDateFormat">
         < constructor-arg  value="yyyy-MM-dd" />
     </ bean >
  
     < bean  id="customer" class="com.mkyong.common.Customer">
         < property  name="date">
             < bean  factory-bean="dateFormat" factory-method="parse">
                 < constructor-arg  value="2010-01-31" />
             </ bean >
         </ property >
     </ bean >
  
</ beans >

  

2. CustomDateEditor

我们声明一个CustomDateEditor,将String转换为Date对象。

1
2
3
4
5
6
7
8
9
10
< bean  id="dateEditor"
        class="org.springframework.beans.propertyeditors.CustomDateEditor">
  
         < constructor-arg >
             < bean  class="java.text.SimpleDateFormat">
                 < constructor-arg  value="yyyy-MM-dd" />
             </ bean >
         </ constructor-arg >
         < constructor-arg  value="true" />
     </ bean >

  

1
2
3
4
5
6
7
8
9
< bean  class="org.springframework.beans.factory.config.CustomEditorConfigurer">
        < property  name="customEditors">
            < map >
                < entry  key="java.util.Date">
                    < ref  local="dateEditor" />
                </ entry >
            </ map >
        </ property >
    </ bean >

  完整的配置为:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
< beans  xmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
  
     < bean  id="dateEditor"
         class="org.springframework.beans.propertyeditors.CustomDateEditor">
  
         < constructor-arg >
             < bean  class="java.text.SimpleDateFormat">
                 < constructor-arg  value="yyyy-MM-dd" />
             </ bean >
         </ constructor-arg >
         < constructor-arg  value="true" />
  
     </ bean >
  
     < bean  class="org.springframework.beans.factory.config.CustomEditorConfigurer">
         < property  name="customEditors">
             < map >
                 < entry  key="java.util.Date">
                     < ref  local="dateEditor" />
                 </ entry >
             </ map >
         </ property >
     </ bean >
  
     < bean  id="customer" class="com.mkyong.common.Customer">
         < property  name="date" value="2010-02-31" />
     </ bean >
  
</ beans >

  

 


==============================================================================
本文转自被遗忘的博客园博客,原文链接:http://www.cnblogs.com/rollenholt/archive/2012/12/27/2835191.html,如需转载请自行联系原作者
相关文章
|
27天前
|
Java Spring
在使用Spring的`@Value`注解注入属性值时,有一些特殊字符需要注意
【10月更文挑战第9天】在使用Spring的`@Value`注解注入属性值时,需注意一些特殊字符的正确处理方法,包括空格、引号、反斜杠、新行、制表符、逗号、大括号、$、百分号及其他特殊字符。通过适当包裹或转义,确保这些字符能被正确解析和注入。
|
1月前
|
Java 测试技术 程序员
为什么Spring不推荐@Autowired用于字段注入?
作为Java程序员,Spring框架在日常开发中使用频繁,其依赖注入机制带来了极大的便利。然而,尽管@Autowired注解简化了依赖注入,Spring官方却不推荐在字段上使用它。本文将探讨字段注入的现状及其存在的问题,如难以进行单元测试、违反单一职责原则及易引发NPE等,并介绍为何Spring推荐构造器注入,包括增强代码可读性和维护性、方便单元测试以及避免NPE等问题。通过示例代码展示如何将字段注入重构为构造器注入,提高代码质量。
|
11天前
|
缓存 Java Spring
实战指南:四种调整 Spring Bean 初始化顺序的方案
本文探讨了如何调整 Spring Boot 中 Bean 的初始化顺序,以满足业务需求。文章通过四种方案进行了详细分析: 1. **方案一 (@Order)**:通过 `@Order` 注解设置 Bean 的初始化顺序,但发现 `@PostConstruct` 会影响顺序。 2. **方案二 (SmartInitializingSingleton)**:在所有单例 Bean 初始化后执行额外的初始化工作,但无法精确控制特定 Bean 的顺序。 3. **方案三 (@DependsOn)**:通过 `@DependsOn` 注解指定 Bean 之间的依赖关系,成功实现顺序控制,但耦合性较高。
实战指南:四种调整 Spring Bean 初始化顺序的方案
|
1月前
|
XML Java 数据格式
Spring从入门到入土(bean的一些子标签及注解的使用)
本文详细介绍了Spring框架中Bean的创建和使用,包括使用XML配置文件中的标签和注解来创建和管理Bean,以及如何通过构造器、Setter方法和属性注入来配置Bean。
66 9
Spring从入门到入土(bean的一些子标签及注解的使用)
|
30天前
|
Java 测试技术 Windows
咦!Spring容器里为什么没有我需要的Bean?
【10月更文挑战第11天】项目经理给小菜分配了一个紧急需求,小菜迅速搭建了一个SpringBoot项目并完成了开发。然而,启动测试时发现接口404,原因是控制器包不在默认扫描路径下。通过配置`@ComponentScan`的`basePackages`字段,解决了问题。总结:`@SpringBootApplication`默认只扫描当前包下的组件,需要扫描其他包时需配置`@ComponentScan`。
|
1月前
|
Java 开发者 Spring
Spring bean的生命周期详解!
本文详细解析Spring Bean的生命周期及其核心概念,并深入源码分析。Spring Bean是Spring框架的核心,由容器管理其生命周期。从实例化到销毁,共经历十个阶段,包括属性赋值、接口回调、初始化及销毁等。通过剖析`BeanFactory`、`ApplicationContext`等关键接口与类,帮助你深入了解Spring Bean的管理机制。希望本文能助你更好地掌握Spring Bean生命周期。
73 1
|
1月前
|
Java Spring
获取spring工厂中bean对象的两种方式
获取spring工厂中bean对象的两种方式
38 1
|
1月前
|
前端开发 Java Spring
【Spring】“请求“ 之传递单个参数、传递多个参数和传递对象
【Spring】“请求“ 之传递单个参数、传递多个参数和传递对象
110 2
|
XML Java 数据格式
Spring【依赖注入】就是这么简单(二)
在Spring的第二篇中主要讲解了Spring Core模块的使用IOC容器创建对象的问题,Spring Core模块主要是解决对象的创建和对象之间的依赖关系,因此本博文主要讲解如何使用IOC容器来解决对象之间的依赖关系!
135 0
Spring【依赖注入】就是这么简单(二)
|
Java 测试技术 容器
Spring【依赖注入】就是这么简单
前言 在Spring的第二篇中主要讲解了Spring Core模块的使用IOC容器创建对象的问题,Spring Core模块主要是解决对象的创建和对象之间的依赖关系,因此本博文主要讲解如何使用IOC容器来解决对象之间的依赖关系! 回顾以前对象依赖 我们来看一下我们以前关于对象依赖,是怎么的历程 直接new对象 在最开始,我们是直接new对象给serice的userDao属性赋值.
1189 0