使用property文件加载bean

本文介绍了如何在Spring中使用Property文件加载Bean。通过案例展示了如何定义property文件,然后利用PropertiesBeanDefinitionReader来读取配置,最后在GenericApplicationContext中手动刷新容器以应用配置。
摘要由CSDN通过智能技术生成

 

xml模式下的Bean加载篇章中我们看到容器AbstractRefreshableApplicationContext在方法loadBeanDefinitions中加载我们的beanDefinition,在子类AbstractXmlApplicationContext继承该方法loadBeanDefinitions(DefaultListableBeanFactory) ,指定XmlBeanDefinitionReader进行加载。

	/**
	 * Load bean definitions into the given bean factory, typically through
	 * delegating to one or more bean definition readers.
	 * @param beanFactory the bean factory to load bean definitions into
	 * @throws BeansException if parsing of the bean definitions failed
	 * @throws IOException if loading of bean definition files failed
	 * @see org.springframework.beans.factory.support.PropertiesBeanDefinitionReader
	 * @see org.springframework.beans.factory.xml.XmlBeanDefinitionReader
	 */
	protected abstract void loadBeanDefinitions(DefaultListableBeanFactory beanFactory)
			throws BeansException, IOException;

也就是说如果我们需要以property形式加载的话,只要指定PropertiesBeanDefinitionReader进行阅读就行了,该reader不详解,我们这里看一个案例就行了。

案例:

定义一个property文件,property_parse_demo.property:

people.(class)=com.jack.ascp.purchase.app.test.spring.parse.People
people.name=jpl
people.gender=man

 

public class People {
    private String name;

    private String gender;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getGender() {
        return gender;
    }

    public void setGender(String gender) {
        this.gender = gender;
    }
}

 

代码:

    public static void main(String[] args) {
        GenericApplicationContext context = new GenericApplicationContext();
        BeanDefinitionRegistry beanDefinitionRegistry = (BeanDefinitionRegistry)context.getBeanFactory();
        PropertiesBeanDefinitionReader propertiesBeanDefinitionReader = new PropertiesBeanDefinitionReader(beanDefinitionRegistry);
        // 设置ResourceLoader为GenericApplicationContext
        propertiesBeanDefinitionReader.setResourceLoader(context);
        propertiesBeanDefinitionReader.loadBeanDefinitions("property_parse_demo.property");
        // GenericApplicationContext的刷新不在构造函数,手动刷新
        context.refresh();
        People people = context.getBean(People.class);
        System.out.println(people.getGender());
        System.out.println(people.getName());
    }

}

我们需要在容器创建之后指定reader,但是AbstractRefreshableApplicationContext

容器的刷新是在构造函数之中完成,因此我们使用GenericApplicationContext (通用容器)进行测试,并且在指定reader之后手动刷新容器。

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值