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

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

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

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

2.2、Spring编程—IOC程序实现

2.2.1建立spring工程(基于maven)

pom.xml

    

        org.springframework

        spring-context

        4.2.6.RELEASE

    

    

            junit

            junit

            4.12

        

2.2.2 编写Java类

接口:

public interface HelloService {

    public void sayHello();

}

实现类:

public class HelloServiceImpl implements HelloService {

    public void sayHello(){

        System.out.println("hello,spring");

    }

}

2.2.3 编写配置文件

在resource目录下创建applicationContext.xml

       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">

    

    

    

            id="helloService"

            class="com.tianshouzhi.spring.HelloServiceImpl">

    

2.2.4 测试

public class HelloServiceTest {

    //传统写法(紧密耦合)

    @Test

    public void traditionalTest(){

        HelloService service = new HelloServiceImpl();

        service.sayHello();

    }

    //使用Spring

    @Test

    public void springTest(){

        // 工厂+反射+配置文件,实例化Service对象

        ApplicationContext context = new ClassPathXmlApplicationContext(

                "applicationContext.xml");

        //通过工厂根据配置的实例名称获取实例对象

        HelloService service2=(HelloService) context.getBean("helloService");

        service2.sayHello();

    }

}

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

你可能感兴趣的:(spring学习:控制反转( Ioc)急速入门,看图理解【云图智联】)