spring学习:控制反转( Ioc)急速入门,看图理解【云图智联】

2.1 什么是控制反转(IOC:Inverse of Control)

IOC反转控制,实际上就是将对象的创建权交给了Spring,程序员无需自己手动实例化对象。

spring学习:控制反转( Ioc)急速入门,看图理解【云图智联】_第1张图片

spring学习:控制反转( Ioc)急速入门,看图理解【云图智联】_第2张图片

可以看出来工厂的作用就是用来解耦合的,而在使用spring的过程中,spring就是充当这个工厂的角色。IOC反转控制,实际上就是将对象的创建权交给了Spring,程序员无需自己手动实例化对象

2.2、Spring编程—IOC程序实现

2.2.1建立spring工程(基于maven)

pom.xml

  1.     
  2.         org.springframework
  3.         spring-context
  4.         4.2.6.RELEASE
  5.     
  6.     
  7.             junit
  8.             junit
  9.             4.12
  10.         

2.2.2 编写Java类

接口:

  1. public interface HelloService {
  2.     public void sayHello();
  3. }

实现类:

  1. public class HelloServiceImpl implements HelloService {
  2.     public void sayHello(){
  3.         System.out.println("hello,spring");
  4.     }
  5. }

2.2.3 编写配置文件

在resource目录下创建applicationContext.xml

  1.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.        xsi:schemaLocation="
  3. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  4.  
  5.     
  6.     
  7.     
  8.             id="helloService"
  9.             class="com.tianshouzhi.spring.HelloServiceImpl">
  10.     

2.2.4 测试

  1. public class HelloServiceTest {
  2.     //传统写法(紧密耦合)
  3.     @Test
  4.     public void traditionalTest(){
  5.         HelloService service = new HelloServiceImpl();
  6.         service.sayHello();
  7.     }
  8.  
  9.     //使用Spring
  10.     @Test
  11.     public void springTest(){
  12.         // 工厂+反射+配置文件,实例化Service对象
  13.         ApplicationContext context = new ClassPathXmlApplicationContext(
  14.                 "applicationContext.xml");
  15.         //通过工厂根据配置的实例名称获取实例对象
  16.         HelloService service2=(HelloService) context.getBean("helloService");
  17.         service2.sayHello();
  18.     }
  19. }

免费学习视频欢迎关注云图智联:https://e.yuntuzhilian.com/ 

你可能感兴趣的:(spring,java,spring,spring,boot,ioc,mybatis)