1.Spring的配置文件一般在resourse里面,resourse编译后就是c类的根路径,可维护性更强
2.Spring.xml文件就是配置文件,注意名字可以不是Spring,没有限制。
Spring.xml配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--Spring配置文件-->
<bean>
</bean>
</beans>
3.可以看到,以<beans></beans>结尾,里面是一个个的<bean></bean>容器。
4.bean里面有两个属性非常重要,就是id和class。id就相当于bean的身份证号,具有唯一性
class的格式是必须填写类的全路径,就是带包名的。
使用Spring框架:
第一步获取Spring容器
第二步根据id获取bean对象
//获取Spring容器
//ApplicationContext API下有很多类,其中一个ClassPathXmlApplicationContext专门从类路径加载Spring配置文件的一个对象
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
//根据id获取bean对象
Object userBean = applicationContext.getBean("UserBean");
System.out.println(userBean);
如果xml文件不在resourse中,那么ClassPathXmlApplicationContext()就会失效,我们应该使用FileSystemXmlApplicationContext();
Spring的底层是反射,调用无参构造来实例化
ApplicationContext接口的顶级父接口是BeanFactory,翻译为Bean工厂,就是能够生产Bean对象的地方