创建一个 Hello 类
get/set 方法、toString 方法(快捷键:alt + insert)
package com.demo.pojo;public class Hello {private String str;public String getStr() {return str;}public void setStr(String str) {this.str = str;}@Overridepublic String toString() {return "Hello{" +"str='" + str + '\'' +'}';}
}
resources 目录下创建一个 beans.xml 文件:
class 路径、name 与 Hello 类里的变量名相同、
value 具体的值,基本数据类型(ref 引用 Spring 容器中创建好的对象,另一个 <bean id>)
类型 变量名 = new 类型();
Hello hello = new Hello();
id = 变量名
class = new 的对象
property 给对象中的属性设置一个值
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd"><!--使用Spring创建对象,称为Bean --><bean id="hello" class="com.demo.pojo.Hello"><property name="str" value="spring"/></bean></beans>
test 目录下创建一个 MyTest 类:
new ClassPathXmlApplicationContext() 固定写法
getBean 获取 id,与 beans.xml 里的 <bean id> 相同,等于从容器里拿
import com.demo.pojo.Hello;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;public class MyTest {public static void main(String[] args) {//获取Spring的上下文对象ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");//现在对象都在Spring中管理了,直接取出来即可Hello hello = (Hello) context.getBean("hello");System.out.println(hello.toString());}
}
控制:谁来控制对象的创建,传统应用程序的对象是由程序本身控制创建的
使用 Spring 后,对象由 Spring 来创建
反转:程序本身不创建对象,而变为被动的接收对象
依赖注入:利用 set 方法来进行注入
IOC 是一种编程思想,由主动的编程变成被动的接收