Spring Study-lesson02-IOC -反转控制-03-14
所谓IOC 就是由Spring 创建对象,管理,装配
例子:
第一步:建立pojo包,生成Hello类 一个属性 String name, get/set方法,toString 方法
package com.feijian.pojo;
public class Hello {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "Hello{" +
"name='" + name + '\'' +
'}';
}
}
第二步:在resources下新建 beans.xml文件 并配置bean ,实际就是用这个文件声明来代替new 一个Hello对象
一旦bean成功,在Hello类的左边边框上会显示spring 的图标,说明该类已被接管。关键还是set方法,使之不需要通过程序控制,
反之通过客户来控制,这也就是反转的意义所在。(个人理解)
<?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/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<!--使用Spring来创建对象,在Spring这些都称为Bean
之前Java
类型 变量名 = new 类型();
Hello hello = new Hello()
现在Spring
id = 变量名
class = new 的对象
property 相当于给对象中的属性 name 设置一个值 value
-->
<bean id="hello" class="com.feijian.pojo.Hello">
<property name="name" value="Spring-2023-03-14"/>
</bean>
</beans>
第三步:测试 在测试test文件夹下: 先new 一个
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
生成这个后,调用getBean方法就找到了beans.xml中的id为hello的bean,其实也就是相当于在JAVA中生成一个新的对象
Hello hello = (Hello) context.getBean("hello");
import com.feijian.pojo.Hello;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
}
}
测试结果
Hello{name='Spring-2023-03-14'}
Process finished with exit code 0