Spring IOC新手入门

Spring IOC新手入门

        IOC(inversion of control)的中文解释是“控制反转”,对象的使用者不是创建者. 作用是将对象的创建 反转给spring框架来创建和管理。我们用到的对象都由Spring框架创建,使用对象时用对象的接口接受,能减少代码之间的耦合。

  • 创建Maven工程, 添加坐标

Spring IOC新手入门_第1张图片

pom.xml

    
        
            org.springframework
            spring-context
            5.0.5.RELEASE
        
        
            junit
            junit
            4.12
            test
        
    
  • 准备好接口和实现类

Spring IOC新手入门_第2张图片

StudentService.java
package cn.appmy;

public interface StudentService {
    String getData();
}
StudentServiceImpl.java
package cn.appmy.impl;

import cn.appmy.StudentService;

public class StudentServiceImpl implements StudentService {
    @Override
    public String getData() {
        return "菜菜";
    }
}
  • 创建spring的配置文件 (spring.xml)




    
  • 创建工厂对象 获得bean 调用

import cn.appmy.StudentService;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class SpringTest {

    @Test
    public void Stest(){
        ApplicationContext act=new ClassPathXmlApplicationContext("spring.xml");
        StudentService studentService =(StudentService) act.getBean("studentService");

        System.out.println(studentService.getData());
    }
}

你可能感兴趣的:(Java,java,http,spring)