1. spring推荐使用面向接口编程。
2.spring的好处是:不用修改业务代码,只需要修改配置文件就可以达到我们想要的结果。
3.spring的核心是IOC。
4.依赖注入:
- 接口注入
- set注入
- 构造注入
5.spring通过反射动态调用的方式,避免了硬编码。
6.applicationContext 建立在BeanFactory之上。
7.spring中对象的模式:
- singleton(单例)
- prototype(非单例)
8. 在<bean>标签中如何使用单例和非单例:
- sintleton = "true"
- sintleton = "false"
9.在spring配置文件中,将属性值设置为null 的方法有两种:
- <value>null</value>
- <null></null>