鱼C论坛

 找回密码
 立即注册
查看: 3840|回复: 1

关于在spring框架中注入日期bean的疑问

[复制链接]
发表于 2017-8-15 10:13:56 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
在下面的代码中我只在java的main函数中调用了bean为customer名的bean为什么spring可以自动转换为date类型的变量在main函数中输出???????
main函数:
ackage com.yiibai.common;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

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);
                
        }
}
对应的xml文件的配置:
<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.yiibai.common.Customer">
                <property name="date" value="2015-12-31" />
        </bean>

</beans>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-12-29 14:19:10 | 显示全部楼层
因该是 customer 这个类里面有toString方法  你输出了  date 这个属性了   
<bean id="customer" class="com.yiibai.common.Customer">
                <property name="date" value="2015-12-31" />
        </bean>
这里你就已经给他赋值了     
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-15 07:09

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表