Spring IOC
Spring IOC底层实现原理
- 原理:在工厂类中通过解析xml文件的
标签,根据传入的id去创建对应类型的对象。
入门案列
-
下载Spring开发包(https://repo.spring.io/libs-release-local/org/springframework/spring/)
-
复制Spring开发jar包到工程
-
理解ioc控制反转和di依赖注入
-
编写spring核心配置文件
-
在程序中读取spring配置文件,通过spring框架获得bean完成相应操作
导入包
-
引入:commons-logging-1.1.3.jar
-
spring-beans-4.0.0.RELEASE.jar
-
spring -context-4.0.4. RELEASE.jar
-
spring-core-4.0.0. RELEASE.jar
-
spring-expression-4.0.0. RELEASE.jar
对应操作
1.通过引入的xml文件构造工厂
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(configLocation:"applicationContext.xml");
2、通过工厂获得类
UserService userService = (UserService)applicationContext.getBean(s:"userService");
userService.satHello();
IOC和DI概念
-
IOC : Inverse of Control 反转控制的概念,就是将原本在程序中手动创建对象的控制权,交由Spring框架管理(简单说,就是创阿金UserService对象控制权被反转到了Spring)
<!--UserService的创建权交给了Spring--> <bean id="userService" class="com.imooc.ioc.demo.UserServiceImpl"> ·····<!--设置属性--> ·····<property name="name" value="李四"/> </bean>
-
DI :Dependency Injection 依赖注入的概念(依赖于IOC,先有IOC才能有DI),就是在Spring创建这个对象的过程中,将这个对象所依赖的属性注入进入。
共有 0 条评论