4. Spring相关API
4.1 ApplicationContext的继承体系
applicationContext: 接口类型,代表应用上下文,可以通过其实例获得Spring容器中的 Bean 对象
4.2 ApplicationContext的实现类
1) ClassPathXmlApplicationContext
从类的根路径下加载配置文件(推荐使用)
2)FIleSystemXmlApplicationContext
从磁盘路径上加载配置文件,配置文件可以在磁盘的任何位置
3)AnnotationConfigApplicationContext
当使用注解配置容器对象时,需要使用此类来创建 Spring 容器。用来读取注解。
4.3 getBean() 方法使用
getBean()源代码:
//一个类有一个或多个对象时使用。当类为非简单数据类时,需要类型强制转换
public Object getBean(String name) throws BeansException {
this.assertBeanFactoryActive();
return this.getBeanFactory().getBean(name);
}
//一个类有且仅有一个对象时使用,当类为非简单数据类不需要类型强制转换
public <T> T getBean(Class<T> requiredType) throws BeansException {
this.assertBeanFactoryActive();
return this.getBeanFactory().getBean(requiredType);
}
4.4 知识要点
ApplicationContext app = new ClassPathXmlApplicationContext("xml文件");
app.getBean("id"); //源码1
app.getBean(Class); //原码2
(“id”); //源码1
app.getBean(Class); //原码2