Properties配备格式加载

Properties配置格式加载?package com.ls.spring.ioc.dummyimport org.springframework.beans.factory.sup

Properties配置格式加载

?

package com.ls.spring.ioc.dummy;import org.springframework.beans.factory.support.DefaultListableBeanFactory;import org.springframework.beans.factory.support.PropertiesBeanDefinitionReader;public class TestBeanFactoryViaProperties {public static void main(String[] args) {DefaultListableBeanFactory factory = new DefaultListableBeanFactory();PropertiesBeanDefinitionReader reader = new PropertiesBeanDefinitionReader(factory);reader.loadBeanDefinitions("classpath:com/ls/spring/ioc/dummy/ioc-test.properties");A a = (A) factory.getBean("a");a.getB().put();}}

?

?

?