首页 > 其他分享 >Spring-DI(依赖注入)及Bean的作用域

Spring-DI(依赖注入)及Bean的作用域

时间:2023-03-10 23:33:34浏览次数:39  
标签:xml String DI 作用域 Spring private address public 注入

DI(依赖注入)

1、构造器注入

前面已经说过了

2、set方式注入【重点】

  • 依赖注入:Set注入
    • 依赖:bean对象的创建依赖于容器
    • 注入:bean对象中的所有属性,由容器来注入

【环境搭建】

  1. 复杂类型

    public class Address {
        private String address;
    
        public String getAddress() {
            return address;
        }
    
        public void setAddress(String address) {
            this.address = address;
        }
    }
    
  2. 真实测试对象

    public class Student {
        private String name;
        private Address address;
        private String[] book;
        private List<String> hobbys;
        private Map<String,String> card;
        private Set<String> games;
        private String wife;
        private Properties info;
    }
    
  3. 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="student" class="com.kuang.pojo.Student">
            <!--第一种,普通的注入,value-->
            <property name="name" value="张三"/>
        </bean>
    
    </beans>
    
  4. 测试类

    public class MyTest {
        public static void main(String[] args) {
            ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
            Student student = (Student) context.getBean("student");
            System.out.println(student.getName());
        }
    }
    

完善注入信息:

<bean id="address" class="com.kuang.pojo.Address">
    <property name="address" value="太原"/>
</bean>

<bean id="student" class="com.kuang.pojo.Student">
    <!--第一种,普通的注入,使用value-->
    <property name="name" value="张三"/>

    <!--第二种,bean注入,使用ref-->
    <property name="address" ref="address"/>

    <!--数组注入-->
    <property name="books">
        <array>
            <value>红楼梦</value>
            <value>西游记</value>
            <value>水浒传</value>
            <value>三国演义</value>
        </array>
    </property>

    <!--List注入-->
    <property name="hobbys">
        <list>
            <value>听歌</value>
            <value>敲代码</value>
            <value>看电影</value>
        </list>
    </property>

    <!--Map注入-->
    <property name="card">
        <map>
            <entry key="身份证" value="111111222222223333"/>
            <entry key="银行卡" value="1111222233334444555"/>
        </map>
    </property>

    <!--Set注入-->
    <property name="games">
        <set>
            <value>LOL</value>
            <value>COC</value>
            <value>BOB</value>
        </set>
    </property>

    <!--null-->
    <property name="wife">
        <null/>
    </property>

    <!--Properties-->
    <property name="info">
        <props>
            <prop key="driver">20190525</prop>
            <prop key="url">男</prop>
            <prop key="username">root</prop>
            <prop key="password">123456</prop>
        </props>
    </property>
</bean>

3、拓展注入方式

我们可以使用c命名空间和p命名空间进行注入

官方解释:

使用:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:c="http://www.springframework.org/schema/c"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--p命名空间注入,可以直接注入属性的值-->
    <bean id="user" class="com.kuang.pojo.User" p:name="张三" p:age="18"/>
    <!--c命名空间注入,通过构造器注入:construct-args-->
    <bean id="user2" class="com.kuang.pojo.User" c:age="18" c:name="狂神"/>

</beans>

测试:

@Test
public void getUser(){
    ApplicationContext context = new ClassPathXmlApplicationContext("userbeans.xml");
    User user = (User) context.getBean("user2");
    System.out.println(user);
}

注意点:p命名空间和c命名空间不能直接使用,需要导入xml约束

xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"

Bean的作用域

  1. 单例模式(Spring默认机制)

    <!--c命名空间注入,通过构造器注入:construct-args-->
    <bean id="user2" class="com.kuang.pojo.User" c:age="18" c:name="狂神" scope="singleton"/>
    
  2. 原型模式:每次从容器中get的时候,都会产生一个新对象

    <!--c命名空间注入,通过构造器注入:construct-args-->
    <bean id="user2" class="com.kuang.pojo.User" c:age="18" c:name="狂神" scope="prototype"/>
    
  3. 其余的request、session、application这些个只能在web开发中使用到

标签:xml,String,DI,作用域,Spring,private,address,public,注入
From: https://www.cnblogs.com/jiaxing-java/p/17204996.html

相关文章

  • Spring-Bean的自动装配
    Bean的自动装配自动装配是Spring满足bean依赖的一种方式Spring会在上下文中自动寻找,并自动给bean装配属性在Spring中有三种装配的方式在xml中显式的配置在java中显......
  • springboot打包时遇到的问题
    第一个问题是Failedtoexecutegoalorg.apache.maven.plugins:maven-resources-plugin:3.3.0:resources(default-resources)onproject   我的springboot版本......
  • 2.HelloSpring
    2.HelloSpring思考问题?Hello对象是谁创建的?Hello对象是由Spring设置的Hello对象的属性是怎么设置的?Hello对象的属性是Spring容器设置的这个过程就叫控制反转......
  • Blazor项目在VisualStudio调试时配置运行基础目录
    最近在使用Blazor开发管理后台时遇到了如下的问题,我这里后台整体采用了AntDesignBlazor组件库,在上线之后发现ReuseTabs组件在使用过程中,如果默认/没有指定为项目的ba......
  • What is the difference between utf8mb4 and utf8 charsets in MySQL?
    Whatisthedifferencebetweenutf8mb4andutf8charsetsinMySQL?回答1UTF-8isavariable-lengthencoding.InthecaseofUTF-8,thismeansthatstoringo......
  • visual stdio基本概念辨析
    项目-属性-vc++目录-包含目录:“包含目录”是指用于引用头文件的目录列表。这些目录包括编译器需要查找以解决在源代码中引用的头文件的路径。项目-属性-vc++目录-库......
  • Spring:简述一下bean的生命周期吧?
    bean的生命周期是指它在ioc容器中从创建到销毁的整个过程。 <hr> 一、生命周期1、实例化,为对象分配内存。2、构造方法。3、属性注入,set注入。4......
  • SpringBoot 文件上传+拦截器
    SpringBoot文件上传+拦截器文件上传原理表单的enctype属性规定在发送到服务器之前应该如何对表单数据进行编码。当表单的enctype="application/x-www-form-urlencoded......
  • mount nfs4 ....No such file or directory
    转载自:https://zhuanlan.zhihu.com/p/434209418https://blog.csdn.net/yusiguyuan/article/details/11515715 ============ #安装nfs-utilsrpcbindyum-yinst......
  • Redis相关知识点整理
    1、redis基础数据结构有哪些?字符串(String)、哈希(Hash)、列表(List)、集合(Set)、有序集合(sortedset) 2、redis持久化rdb:rdb核心规则配置save<指定时间><执行指定次数更新......