1、导入Maven依赖
<dependencies>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.12</version>
</dependency>
</dependencies>
2、IOC控制反转
创建Hello类
public class Hello {
private String str;
public String getStr() {
return str;
}
public void setStr(String str) {
this.str = str;
}
@Override
public String toString() {
return "hello{" +
"str='" + str + '\'' +
'}';
}
}
创建beans.xml
<?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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="hello" class="com.mds.pojo.Hello">
<property name="str" value="Spring"/>
</bean>
</beans>
测试类
public class MyTest {
public static void main(String[] args) {
//通过配置文件获取Spring容器
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
}
}
运行MyTest
- hello对象是由Spring创建的;
- hello对象的属性是由Spring容器设置的;
- hello对象通过beans.xml的bean标签注册.
以上这个过程就叫做控制反转:
控制:传统的应用程序的对象由程序本身来控制(new对象),使用Spring后,对象由Spring创建.
反转:程序本身不创建对象,而是变为被动的接收对象.
在实体类中通过set方法来实现依赖注入
Spring容器存储POJO和元数据,当要使用时从该容器中取出
小结:所谓IOC(控制反转),即通过Spring实现对对象的创建、管理和装配,我们只需要在配置文件中修改即可。
参考:【狂神说Java】Spring5最新完整教程IDEA版通俗易懂_哔哩哔哩_bilibili
Spring官方文档:https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-basics
Spring依赖:https://mvnrepository.com/artifact/org.springframework/spring-webmvc