1. 实现方式是通过IoC容器实现的,
2. IoC容器的核心BeanFactory和ApplicationContext BeanFactory是初始化、配置、管理bean的容器,
XMLBeanFactory可以实现BeanFactory接口的所具有的功能方法, 通过构造器的参数注入实现。
3. beanfactory的方法
getBean(String beanName) getBean(String s, Class class1); containsBean(String s); isSingletonBean(String s); isPrototype(String s); getType(String s);
4. ApplicationContext是BeanFactory的子接口,称应用上下文,
除了能创建、管理bean,还由其他的功能,比如国际化。 还能初始化singleton Bean,是在容器被初始化时发生的,
当ApplicationContext容器被初始化时,singleton Bean初始化了,不需要单独在初始化,
5. 获取上下文信息的方法
ClassPathXmlApplicationContext("/bean.xml");从类加载路径的xml文件获取上下文
FileSystemXmlApplicationContext("d:/app/bean.xml");从文件系统的xml文件获取上下文
XmlWebApplicationContext("/bean.xml");从web系统(WebRoot/WEB-INF/bean.xml)的xml文件获取上下文
时间: 2024-11-01 09:55:19