【Spring学习笔记_2】DI概述


前言

依赖注入(dependency injection)是IoC控制反转的一种具体实现


一、DI实现的两种方法

1、set方法注入

  1. 创建类,定义类属性,在类中实现setter方法
    public void setName(String name){
        this.name = name;
    }
    public void setAuthor(String author){
        this.author = author;
    }
  1. 创建xml配置文件,实现依赖注入配置
    <!--1   基于set方法完成属性注入-->
    <bean id="book" class="com.cx.spring6.iocxml.di.Book">
        <property name="name" value="飞刀,又见飞刀"></property>
        <property name="author" value="古龙"></property>
    </bean>
  1. 解析配置文件,创建对象
    @Test
    public void testSet(){
        //
        ApplicationContext context = new ClassPathXmlApplicationContext("bean-di.xml");
        //
        Book book = (Book) context.getBean("book",Book.class);
        //
        System.out.println(book);

    }

  1. 测试是否实现属性注入
    在这里插入图片描述

2、构造器方法注入

第一步同上,只不过需要创建有参构造方法

    public Book(){
        System.out.println("默认调用无参构造方法");
    }

    public Book(String name,String author){
        System.out.println("当然可以调用有参构造方法啦");
        this.name = name;
        this.author = author;
    }

后面几步除配置文件内属性注入使用的标签不同以外,其余跟set方法相同

    <!--2   基于构造器完成属性注入-->
    <bean id="book2" class="com.cx.spring6.iocxml.di.Book">
        <constructor-arg name="name" value="活着"></constructor-arg>
        <constructor-arg name="author" value="余华"></constructor-arg>
    </bean>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值