spring-code详解
spring code 为spring容器的核心。 有beans,beanFactory,beandefinitions,applicationContext等定义。实现了控制反转与依赖注入bean配置以及加载。1.实例化beanFactory1.1 加载classPath下的配置文件ClassPathResource context = new ClassPathResource(
·
spring code 为spring容器的核心。 有beans,beanFactory,beandefinitions,applicationContext等定义。实现了控制反转与依赖注入bean配置以及加载。
1.实例化beanFactory
1.1 加载classPath下的配置文件
ClassPathResource context = new ClassPathResource("applicationContext.xml");
XmlBeanFactory factory = new XmlBeanFactory(context);
Iservice service = factory.getBean("service");
1.2使用文件流加载任意位置的文件
InputStream in = new FileInputStream("c:\\ApplicationContext.xml");
XmlBeanFactory factory = new XmlBeanFactory(in);
1.3使用classPathXMLApplicationContext加载多个配置文件
ClassPathXMLApplicationContext context = new ClassPathXMLApplicationContext(new String[]{"ApplicationContext.xml","ApplicationContext-part2.xml"})
BeanFactory Factory = (BeanFactory)context;
更多推荐
已为社区贡献1条内容
所有评论(0)