Spring:bean注入--Set方法注入

 更新时间:2021年07月16日 10:05:58   作者:宁在春  
这篇文章主要给大家总结介绍了关于Spring注入Bean的一些方式,文中通过示例代码介绍的非常详细,对大家学习或者使用Spring具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧

Set 方法注入

1.新建一个空的 maven项目。

2.导入依赖

properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <!--这里是java 版本号-->
        <maven.compiler.source>11</maven.compiler.source>  
        <maven.compiler.target>11</maven.compiler.target>
        <!--这里是方便版本控制-->
        <spring.version>5.3.1</spring.version>
        <lombok.version>1.18.20</lombok.version>
        <junit.version>4.12</junit.version>
</properties>
<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-beans</artifactId>
        <version>${spring.version}</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>${spring.version}</version>
    </dependency>
    <dependency>
        <groupId>org.projectlombok</groupId>
        <artifactId>lombok</artifactId>
        <version>${lombok.version}</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>${junit.version}</version>
    </dependency>
</dependencies>

3.工程项目结构

在这里插入图片描述

4.新建包 com.crush.pojo

5.新建Java类Student

@Data // set、get 方法
@AllArgsConstructor // 全参构造
@NoArgsConstructor  // 无参构造
public class Student {
    /**
     * 学号
     */
    private Long number;
    /**
     * 学生姓名
     */
    private String name;
    /**
     * 所在学校
     */
    private String school;
}

resource 下 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 http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!--第一种方式 set 方式注入
        1、有set方法才可以注入
        2、默认是单例模式 singleton
        -->
    <bean id="student" class="com.crush.pojo.Student" scope="singleton">
        <!--值可以跟在在标签后面 也可以 写在标签内部-->
        <property name="number">
            <value>1</value>
        </property>
        <property name="name" value="wyh"/>
        <property name="school" value="hngy"/>
    </bean>
        <!--这个id 就是 applicationContext.getBean("【bean-id】", Student.class);
        此处id 大多数时候命名规则就是 类名的第一个字母改为小写
        class:Student
        bean id一般就为: student
     -->
    <bean id="ssss" class="com.crush.pojo.Student" scope="singleton">
        <!--值可以跟在在标签后面 也可以 写在标签内部-->
        <property name="number">
            <value>1</value>
        </property>
        <property name="name" value="wyh"/>
        <property name="school" value="hngy"/>
    </bean>
</beans>

写一个测试类

public class Test {

    /**
     * 通过 ClassPathXmlApplicationContext 获取 Spring 应用程序的 上下文 ApplicationContext
     */
    @org.junit.Test
    public void test(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml");
        // 第一种方式 获取ioc 容器中的Student 强制类型转换
        Student student = (Student) applicationContext.getBean("student");
        // 第二种方式 直接在后面写明类的标签。
        Student student1 = applicationContext.getBean("student", Student.class);
        // student.setName("cccc"); 给其中一个修改 就会全部修改 可以自己打开测试下 
        System.out.println(student);
        System.out.println(student1);
        // 这里结果为true 
        // 解释:因为Spring 默认构造出来的对象 默认是单例的。 无论获取多少次 ,都是单例的。
        System.out.println(student==student1);
    }
        /**
     * 通过 FileSystemXmlApplicationContext 获取 Spring 应用程序的 上下文 ApplicationContext
     * 还有第三种是 通过Web服务器实例化 ApplicationContext 容器
     */
    @org.junit.Test
    public void test2(){
        //这里的路径 也可以 用绝对路径
        ApplicationContext applicationContext = new FileSystemXmlApplicationContext("src\\main\\resources\\beans.xml");
        Student student = applicationContext.getBean("student", Student.class);
        System.out.println(student);
    }
}

小小思考

为什么 new ClassPathXmlApplicationContext(“beans.xml”); 要用ApplicationContext 来接收,而不用ClassPathXmlApplicationContext 接收呢?

ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml");
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml");

解释:

按照面向接口编程的思想,声明变量应该是接口类型的,然后创建一个该接口的实现类的实例赋值给该变量。 ApplicationContext是接口,ClassPathXmlApplicationContext是它的一个实现类。所以你就看到了 ApplicationContext ac = new ClassPathXmlApplicationContext(…)

总结

本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注脚本之家的更多内容!

相关文章

  • 小伙熬夜用Java重现经典超级马里奥代码实例

    小伙熬夜用Java重现经典超级马里奥代码实例

    这篇文章主要介绍了Java重现经典超级马里奥,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-04-04
  • Spring IOC容器Bean管理XML注入集合类型属性

    Spring IOC容器Bean管理XML注入集合类型属性

    这篇文章主要为大家介绍了Spring IOC容器Bean管理XML注入集合类型属性,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-05-05
  • 在Java中Scanner的用法总结

    在Java中Scanner的用法总结

    这篇文章主要介绍了在Java中Scanner的用法总结,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-10-10
  • Java中使用正则表达式获取网页中所有图片的路径

    Java中使用正则表达式获取网页中所有图片的路径

    这篇文章主要介绍了Java中使用正则表达式获取网页中所有图片的路径,本文直接给出实例代码,需要的朋友可以参考下
    2015-06-06
  • Spring Boot Web应用开发 CORS 跨域请求支持

    Spring Boot Web应用开发 CORS 跨域请求支持

    本篇文章主要介绍了Spring Boot Web应用开发 CORS 跨域请求支持,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-05-05
  • springboot+vue实现阿里云oss大文件分片上传的示例代码

    springboot+vue实现阿里云oss大文件分片上传的示例代码

    阿里云推出了直传,本文主要介绍了springboot+vue实现阿里云oss大文件分片上传的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2024-06-06
  • 手把手教你搞懂冒泡排序和选择排序

    手把手教你搞懂冒泡排序和选择排序

    这篇文章主要介绍了java数组算法例题代码详解(冒泡排序,选择排序),本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-07-07
  • java中的异或问题代码解析

    java中的异或问题代码解析

    这篇文章主要介绍了java中的异或问题代码解析,具有一定借鉴价值,需要的朋友可以参考下。
    2017-12-12
  • Springboot搭建JVM监控(Springboot + Prometheus + Grafana)

    Springboot搭建JVM监控(Springboot + Prometheus +&n

    在应用开发时,监控报警必不可少,本文主要介绍了Springboot搭建JVM监控(Springboot + Prometheus + Grafana),具有一定的参考价值,感兴趣的可以了解一下
    2024-05-05
  • SpringBoot集成Redis数据库,实现缓存管理

    SpringBoot集成Redis数据库,实现缓存管理

    SpringBoot2 版本,支持的组件越来越丰富,对Redis的支持不仅仅是扩展了API,更是替换掉底层Jedis的依赖,换成Lettuce。 本案例需要本地安装一台Redis数据库。下面就来看下集成Redis的步骤
    2021-06-06

最新评论