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
     xsi:schemaLocation="http://www.springframework.org/schema/beans
  
     < 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
     xsi:schemaLocation="http://www.springframework.org/schema/beans
  
     < 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
     xsi:schemaLocation="http://www.springframework.org/schema/beans
  
     < 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 >

  

目录
相关文章
|
3月前
|
XML Java 数据格式
Spring5入门到实战------7、IOC容器-Bean管理XML方式(外部属性文件)
这篇文章是Spring5框架的实战教程,主要介绍了如何在Spring的IOC容器中通过XML配置方式使用外部属性文件来管理Bean,特别是数据库连接池的配置。文章详细讲解了创建属性文件、引入属性文件到Spring配置、以及如何使用属性占位符来引用属性文件中的值。
Spring5入门到实战------7、IOC容器-Bean管理XML方式(外部属性文件)
|
21天前
|
XML Java 数据格式
Spring从入门到入土(bean的一些子标签及注解的使用)
本文详细介绍了Spring框架中Bean的创建和使用,包括使用XML配置文件中的标签和注解来创建和管理Bean,以及如何通过构造器、Setter方法和属性注入来配置Bean。
56 9
Spring从入门到入土(bean的一些子标签及注解的使用)
|
2月前
|
缓存 安全 Java
Spring框架中Bean是如何加载的?从底层源码入手,详细解读Bean的创建流程
从底层源码入手,通过代码示例,追踪AnnotationConfigApplicationContext加载配置类、启动Spring容器的整个流程,并对IOC、BeanDefinition、PostProcesser等相关概念进行解释
133 24
Spring框架中Bean是如何加载的?从底层源码入手,详细解读Bean的创建流程
|
12天前
|
Java 测试技术 Windows
咦!Spring容器里为什么没有我需要的Bean?
【10月更文挑战第11天】项目经理给小菜分配了一个紧急需求,小菜迅速搭建了一个SpringBoot项目并完成了开发。然而,启动测试时发现接口404,原因是控制器包不在默认扫描路径下。通过配置`@ComponentScan`的`basePackages`字段,解决了问题。总结:`@SpringBootApplication`默认只扫描当前包下的组件,需要扫描其他包时需配置`@ComponentScan`。
|
2月前
|
XML Java 数据格式
Spring IOC—基于XML配置Bean的更多内容和细节(通俗易懂)
Spring 第二节内容补充 关于Bean配置的更多内容和细节 万字详解!
183 18
Spring IOC—基于XML配置Bean的更多内容和细节(通俗易懂)
|
2月前
|
XML Java 数据格式
spring复习02,xml配置管理bean
详细讲解了Spring框架中基于XML配置文件管理bean的各种方式,包括获取bean、依赖注入、特殊值处理、属性赋值、集合类型处理、p命名空间、bean作用域及生命周期和自动装配。
spring复习02,xml配置管理bean
|
21天前
|
Java 开发者 Spring
Spring bean的生命周期详解!
本文详细解析Spring Bean的生命周期及其核心概念,并深入源码分析。Spring Bean是Spring框架的核心,由容器管理其生命周期。从实例化到销毁,共经历十个阶段,包括属性赋值、接口回调、初始化及销毁等。通过剖析`BeanFactory`、`ApplicationContext`等关键接口与类,帮助你深入了解Spring Bean的管理机制。希望本文能助你更好地掌握Spring Bean生命周期。
53 1
|
23天前
|
Java Spring
获取spring工厂中bean对象的两种方式
获取spring工厂中bean对象的两种方式
17 1
|
25天前
|
Java 开发者 Spring
Spring bean的生命周期详解!
本文详细介绍了Spring框架中的核心概念——Spring Bean的生命周期,包括实例化、属性赋值、接口回调、初始化、使用及销毁等10个阶段,并深入剖析了相关源码,如`BeanFactory`、`DefaultListableBeanFactory`和`BeanPostProcessor`等关键类与接口。通过理解这些核心组件,读者可以更好地掌握Spring Bean的管理和控制机制。
63 1
|
2月前
|
XML Java 数据格式
spring复习03,注解配置管理bean
Spring框架中使用注解配置管理bean的方法,包括常用注解的标识组件、扫描组件、基于注解的自动装配以及使用注解后的注意事项,并提供了一个基于注解自动装配的完整示例。
spring复习03,注解配置管理bean