首页 > 其他 > 详细

Bean的自动装配

时间:2021-06-18 19:05:46      阅读:11      评论:0      收藏:0      [点我收藏+]
  • Bean的自动装配

    • 自动装配是Spring满足bean依赖一种方式
    • Spring会在上下文中自动寻找,并自动给bean装配属性

    三种装配的方式

    1.在xml中显示的配置
    2.在java中显示配置
    3.隐式的自动装配bean【重点掌握】

    环境搭建

    • 创建实体类
    • 配置文件
    • 测试

    创建3个实体类

public class Dog {
    public void shout(){
        System.out.println("旺~");
    }
}
public class Cat {
    public void shout(){
        System.out.println("喵~");
    }
}
@Data
public class People {
    private Cat cat;
    private Dog dog;
    private String name;
}
  • 配置文件

    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="dog" class="com.saxon.pojo.Dog"/>
    <bean id="cat" class="com.saxon.pojo.Cat"/>
    <bean id="people" class="com.saxon.pojo.People">
        <property name="name" value="saxon"/>
        <property name="cat" ref="cat"/>
        <property name="dog" ref="dog"/>
    </bean>
</beans>

测试类:

public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        People people = context.getBean("people", People.class);
        people.getCat().shout();
        people.getDog().shout();
    }
}

byname自动装配

beans.xml文件中,加入autowire属性,将值设置为byName

byName:会自动在容器上下文中查找,和自己对象set方法后面的值对应的beanid

<?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="dog" class="com.saxon.pojo.Dog"/>
    <bean id="cat" class="com.saxon.pojo.Cat"/>
    <bean id="people" class="com.saxon.pojo.People" autowire="byName">
        <property name="name" value="saxon"/>
    </bean>
</beans>

bytype自动装配

bytype自动装配和byname的差不多,将autowire的值设置为byType

byType:会自动在容器上下文中查找,和自己对象属性类型相同的bean,但是一种属性只能有一个对象,否则spring容器无法进行识别,这里装配方式的id是可以省略的

<?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="dog" class="com.saxon.pojo.Dog"/>
    <bean id="cat" class="com.saxon.pojo.Cat"/>
    <bean id="people" class="com.saxon.pojo.People" autowire="byType">
        <property name="name" value="saxon"/>
    </bean>
</beans>

小结:

  • byname的使用,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致!
  • bytype的使用,需要保证所以bean的class也就是对象唯一,并且bean需要和自动注入的属性的类型一致!

Bean的自动装配

原文:https://www.cnblogs.com/saxonsong/p/14900268.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!