Version: Next

Hello Spring

Hello Spring

新建一个maven模块,除了实例化Spring容器,全程不使用new关键字

在父工程中已经导入了spring maven坐标

  • 去官方文档找核心配置文件,内容:
<?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="..." class="...">
<!-- collaborators and configuration for this bean go here -->
</bean>
<bean id="..." class="...">
<!-- collaborators and configuration for this bean go here -->
</bean>
<!-- more bean definitions go here -->
</beans>

官方把它叫applicationContext为了方便理解我们把它叫beans.xml因为里面配的都是一堆bean

  • 新建一个pojo类Hello它有一个String str属性(用一下lombok)

    @Data
    @NoArgsConstructor
    @AllArgsConstructor
    public class Hello {
    private String Str;
    }
  • beans.xml 我们用Spring来创建Hello的对象,Hello对象的str属性原本用set方法设置,现在用配置文件来设置

    str属性的值设置为Spring

    <bean id="hello" class="com.bsx.pojo.Hello">
    <property name="str" value="Spring"/>
    </bean>
  • 实例化容器,测试 Spring提供了ApplicationContext构造函数的一个或多个位置路径是资源字符串,这些资源字符串使容器可以从外部资源加载配置元数据CLASSPATH

    我们的对象现在都在Spring中管理了,我们要使用,直接去里面取出来

    @Test
    public void testHelloSpring() {
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    //用bean的id取
    Hello hello = (Hello) context.getBean("hello");
    System.out.println(hello.toString());
    }

控制反转:

  • 控制 谁来控制对象的创建,传统应用程序的对象是由程序本身控制创建的,使用Spring后,对象是由Spring来创建的
  • 反转 程序本身不创建对象,而编程被动的接收对象
  • 依赖注入 利用set方法来进行注入