IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Spring学习 -- bean自动装配 -> 正文阅读

[Java知识库]Spring学习 -- bean自动装配

自动装配是spring满足bean依赖的一种方式

spring 会在上下文自动寻找,并自动给bean装配属性

在spring中有三种装配方式:

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

例子:
环境搭建一个人有两个宠物

public class Cat {
    public void shout(){
        System.out.println("苗");
    }
}
public class Dog {
    public void shout(){
        System.out.println("你的狗叫什么?");
    }
}

public class People {
    private  Cat cat;
    private  Dog dog;
    private  String name;

    @Override
    public String toString() {
        return "People{" +
                "cat=" + cat +
                ", dog=" + dog +
                ", name='" + name + '\'' +
                '}';
    }

    public Cat getCat() {
        return cat;
    }

    public void setCat(Cat cat) {
        this.cat = cat;
    }

    public Dog getDog() {
        return dog;
    }

    public void setDog(Dog dog) {
        this.dog = dog;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

public class MyTest {

    @Test
    public  void test(){
    ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");
    People people = context.getBean("people",People.class);
    people.getDog().shout();
    people.getCat().shout();

    }

}
<?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">
    <bean id="dog" class="com.xh.Dog">

    </bean>
   <bean id="cat" class="com.xh.Cat">

   </bean>
    <bean id="people" class="com.xh.People">
        <property name="name" value="胡小黑"/>
        <property name="cat"  ref="cat"/>
        <property name="dog"  ref="dog"/>

    </bean>

</beans>

ByName自动装配

<!--   ByName:会自动 在容器上下文查找,和自己对象set方法后边对应的 bean id -->
    <bean id="people" class="com.xh.People" autowire="byName">
        <property name="name" value="是小胡呀"/>
    </bean>
    <bean id="dog" class="com.xh.Dog">

    </bean>
   <bean id="cat" class="com.xh.Cat">
  public void setCat(Cat cat) {
        this.cat = cat;
    }
    public void setDog(Dog dog) {
        this.dog = dog;
    }
    public void setName(String name) {
        this.name = name;
    }

ByType

<!--    ByType 不会根据id进行查找,和自己对象属性类型相同的bean-->
    <bean id="people" class="com.xh.People" autowire="byType">
    <property name="name" value="是小胡呀"/>
    </bean>
 <bean id="dog" class="com.xh.Dog">

    </bean>
   <bean id="11cat" class="com.xh.Cat">

小结:

byName的时候需要保证bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致。

byType的时候需要保证bean的class唯一,并且这个bean需要和自动注入的属性的类型一致。

注解实现自动配置

JDk1.5以后支持注解,spring 2.5支持注解‘

使用注解需要注意的是:

  1. 导入约束context约束
  2. 配置注解的支持 < context:annotation-config />
<?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:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd">

    <context:annotation-config/>

    <bean class="example.SimpleMovieCatalog" primary="true">
        <!-- inject any dependencies required by this bean -->
    </bean>

    <bean class="example.SimpleMovieCatalog">
        <!-- inject any dependencies required by this bean -->
    </bean>

    <bean id="movieRecommender" class="example.MovieRecommender"/>

</beans>

@Autowired


<?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:context="http://www.springframework.org/schema/context"
      xmlns:aop="http://www.springframework.org/schema/aop"
      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
">
   <!--开启注解的支持-->
   <context:annotation-config/>

   <bean id="dog" class="com.xh.Dog">
   </bean>
   <bean id="cat" class="com.xh.Cat">
   </bean>
   <bean id="people" class="com.xh.People"></bean>
   <!-- <bean id="people" class="com.xh.People">
        <property name="name" value="胡小黑"/>
        <property name="cat"  ref="cat"/>
        <property name="dog"  ref="dog"/>

    </bean>
    -->
   <!--   ByName:会自动 在容器上下文查找,和自己对象set方法后边对应的 beanid-->
   <!--    <bean id="people" class="com.xh.People" autowire="byName">
           <property name="name" value="是小胡呀"/>
       </bean>-->

   <!--    ByType 不会根据id进行查找,和自己对象属性类型相同的bean-->
   <!--
   <bean id="people" class="com.xh.People" autowire="byType">
       <property name="name" value="是小胡呀"/>
   </bean>
   -->
</beans>
import org.springframework.beans.factory.annotation.Autowired;

public class People {
    @Autowired
    private  Cat cat;
    @Autowired  //使用之后get set方法都不需要了。
    private  Dog dog;
    private  String name;

    @Override
    public String toString() {
        return "People{" +
                "cat=" + cat +
                ", dog=" + dog +
                ", name='" + name + '\'' +
                '}';
    }

    public Cat getCat() {
        return cat;
    }

    public void setCat(Cat cat) {
        this.cat = cat;
    }

    public Dog getDog() {
        return dog;
    }

    public void setDog(Dog dog) {
        this.dog = dog;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

直接在属性上使用,也可以在set方式上使用

使用Autowired我们连set方法都不需要使用了,前提条件是你这个自动装配的属性在IOC(Spring)容器中存在,且符合byName;

注意:

@Nullable 字段标记了这个注解,说明字段可以为null

public @interface Autowired {
    boolean required() default true;
}

@Autowired(required = false)
//如果显示的定义了Autowired的required为false标志这个值可以为空否则不允许为空

如果@Autowired自动装配环境比较复杂的时候自动装配无法通过一个注解@Autowired完成的时候,使用@Qualifier(value=“***”)去配置@Autowired的使用,指定一个唯一的bean对象注入

java自带@Resource

@Resource注解,首先去spring容器中查找id名字,找不到查找类型,在找不到报错。唯一,不能查找重复的.

@Autowired//使用之后get set方法都不需要了。
    @Qualifier(value = "dog") //如果存在多对相同的,需要精准查找到一个,就需要这个注解指定了
    private  Dog dog;

@Resource

@Resource(name="cat")
    private  Cat cat;
@Resource
private  Dog dog;

@Resource 和 @Autowired区别

  1. 都是用来自动装配的,都可以放到属性字段上
  2. @Autowired 通过byname的方式实现,而且必须要求这个对象存在,否则报错
  3. @Resource首先去spring容器中查找id名字,找不到查找类型(ByType),在找不到报错。唯一,不能查找重复的.
  4. 执行顺序不同 @Autowired通过ByType的方式实现,@Resource默认通过byName的方式实现
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-12-25 10:52:38  更:2022-12-25 10:54:37 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 13:33:50-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码