-
IoC:控制反转,控制权的转移,应用程序本身不负责依赖对象的创建和维护,而是由外部容器负责创建和维护 DI:依赖注入是 IoC 的一种实现方式 目的:创建对象并且组装对象之间的关系 Bean 容器初始化 基础:两个包 org.springframework.beans(BeanFactory 提供配置结构和基本功能,加载并初始化 Bean) org.springframework.context(ApplictionContext 保存了 Bean 对象并在 Spring 中被广泛使用) 方式:加载 ApplictionContext A、本地文件 FileSystemXmlApplictionContext context = new FileSystemXmlApplictionContext("d:/appcontext.xml"); B、Classpath ClassPathXmlApplictionContext context = new ClassPathXmlApplictionContext("classpath:appcontext.xml"); C、Web 应用中依赖 servlet 或 Listener <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <servlet-name>context</servlet-name> <servlet-class>org.springframework.web.context.ContextLoaderServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet>查看全部
-
注解@Autowired查看全部
-
Bean的作用域查看全部
-
Bean配置项查看全部
-
设置注入查看全部
-
Spring注入查看全部
-
Bean容器初始化查看全部
-
Bean 容器初始化查看全部
-
单元测试查看全部
-
IOC的好处查看全部
-
Springd的Bean配置 Spring中把所有对象称为Bean查看全部
-
IOC扩展理解查看全部
-
什么是IOC查看全部
-
面向接口编程查看全部
-
框架的特点查看全部
举报
0/150
提交
取消