Spring中Bean装配的歧义性

2024-05-16 07:32
文章标签 java spring bean 歧义 装配

本文主要是介绍Spring中Bean装配的歧义性,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在spring容器中有多个同类的Bean时,该如何装载呢?例如有一个服务接口A,该接口有3个实现类,在容器中就会生成3个A的实现类的Bean,当对A进行装载时,容器不会判断装载哪一个,就会报一个没有唯一的一个Bean。要想解决此问题,最简单的方法就是用Primary注解,Primary注解表示优先装载Bean。但是最方便的方法是指定装载Bean的名称。下面用代码演示

一、优先装载

1、服务接口

package com.spring.primary.annotation;public interface Animal {void eat();
}

2、接口的实现类
总共有猪、狗、猫实现接口
猪:

package com.spring.primary.annotation;import org.springframework.context.annotation.Primary;
import org.springframework.stereotype.Component;@Component
@Primary //当容器中有多个Bean同类的Bean时,优先注入该Bean
public class Pig implements Animal {@Overridepublic void eat() {System.out.println("我是猪,我吃猪食");}
}

猫:

package com.spring.primary.annotation;import org.springframework.stereotype.Component;@Component
public class Cat implements Animal {@Overridepublic void eat() {System.out.println("我是猫,我吃猫食");}
}

狗:

package com.spring.primary.annotation;import org.springframework.stereotype.Component;@Component
public class Dog implements Animal {@Overridepublic void eat() {System.out.println("我是狗,我吃狗食");}
}

3、配置类
新建一个配置类,用于配置要装载的Bean。

package com.spring.primary.annotation;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;@Configuration
@ComponentScan
//默认扫描所在的包
public class AnnotationConfig {private Animal animal;@Autowired//容器中有三个关于Animal的Bean,优先注入猪的那个Beanpublic void setAnimal(Animal animal) {this.animal = animal;}
}

4、测试方法如下

package com.spring.primary.annotation;import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class TestMain {public static void main(String[] args) {AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(AnnotationConfig.class);Animal animal = ctx.getBean(Animal.class);//此处获取到的Bean是猪的Beananimal.eat();}
}

5、输出结果如下

我是猪,我吃猪食

6、总结
从上面实例可以看出,注解Primary一定程度上避免了容器中有多个同类型的Bean时,不知道注入哪个Bean的程序异常。但是这不是最好的方法,下面用限定名装载Bean。

二、限定名装载Bean

1、服务接口不变,实现类分别为:

package com.spring.primary.annotation;import org.springframework.context.annotation.Primary;
import org.springframework.stereotype.Component;@Component("pigIml")
public class Pig implements Animal {@Overridepublic void eat() {System.out.println("我是猪,我吃猪食");}
}

狗和猫的限定名分别改为:
@Component(“dogIml”)和@Component(“catIml”)

2、配置类

package com.spring.primary.annotation;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;@Configuration
@ComponentScan
//默认扫描所在的包
public class AnnotationConfig {}

3、测试类

package com.spring.primary.annotation;import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class TestMain {public static void main(String[] args) {AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(AnnotationConfig.class);Animal animal = (Animal) ctx.getBean("pigIml");animal.eat();}
}

4、输出结果为

我是猪,我吃猪食

因此从上面对比可以看出,优先用限定名的Bean去装载,更容易。

这篇关于Spring中Bean装配的歧义性的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/994263

相关文章

Java中Map的五种遍历方式实现与对比

《Java中Map的五种遍历方式实现与对比》其实Map遍历藏着多种玩法,有的优雅简洁,有的性能拉满,今天咱们盘一盘这些进阶偏基础的遍历方式,告别重复又臃肿的代码,感兴趣的小伙伴可以了解下... 目录一、先搞懂:Map遍历的核心目标二、几种遍历方式的对比1. 传统EntrySet遍历(最通用)2. Lambd

Spring Boot 中 RestTemplate 的核心用法指南

《SpringBoot中RestTemplate的核心用法指南》本文详细介绍了RestTemplate的使用,包括基础用法、进阶配置技巧、实战案例以及最佳实践建议,通过一个腾讯地图路线规划的案... 目录一、环境准备二、基础用法全解析1. GET 请求的三种姿势2. POST 请求深度实践三、进阶配置技巧1

springboot+redis实现订单过期(超时取消)功能的方法详解

《springboot+redis实现订单过期(超时取消)功能的方法详解》在SpringBoot中使用Redis实现订单过期(超时取消)功能,有多种成熟方案,本文为大家整理了几个详细方法,文中的示例代... 目录一、Redis键过期回调方案(推荐)1. 配置Redis监听器2. 监听键过期事件3. Redi

Spring Boot 处理带文件表单的方式汇总

《SpringBoot处理带文件表单的方式汇总》本文详细介绍了六种处理文件上传的方式,包括@RequestParam、@RequestPart、@ModelAttribute、@ModelAttr... 目录方式 1:@RequestParam接收文件后端代码前端代码特点方式 2:@RequestPart接

SpringBoot整合Zuul全过程

《SpringBoot整合Zuul全过程》Zuul网关是微服务架构中的重要组件,具备统一入口、鉴权校验、动态路由等功能,它通过配置文件进行灵活的路由和过滤器设置,支持Hystrix进行容错处理,还提供... 目录Zuul网关的作用Zuul网关的应用1、网关访问方式2、网关依赖注入3、网关启动器4、网关全局变

SpringBoot全局异常拦截与自定义错误页面实现过程解读

《SpringBoot全局异常拦截与自定义错误页面实现过程解读》本文介绍了SpringBoot中全局异常拦截与自定义错误页面的实现方法,包括异常的分类、SpringBoot默认异常处理机制、全局异常拦... 目录一、引言二、Spring Boot异常处理基础2.1 异常的分类2.2 Spring Boot默

基于SpringBoot实现分布式锁的三种方法

《基于SpringBoot实现分布式锁的三种方法》这篇文章主要为大家详细介绍了基于SpringBoot实现分布式锁的三种方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、基于Redis原生命令实现分布式锁1. 基础版Redis分布式锁2. 可重入锁实现二、使用Redisso

SpringBoot的全局异常拦截实践过程

《SpringBoot的全局异常拦截实践过程》SpringBoot中使用@ControllerAdvice和@ExceptionHandler实现全局异常拦截,@RestControllerAdvic... 目录@RestControllerAdvice@ResponseStatus(...)@Except

Springboot配置文件相关语法及读取方式详解

《Springboot配置文件相关语法及读取方式详解》本文主要介绍了SpringBoot中的两种配置文件形式,即.properties文件和.yml/.yaml文件,详细讲解了这两种文件的语法和读取方... 目录配置文件的形式语法1、key-value形式2、数组形式读取方式1、通过@value注解2、通过

Java 接口定义变量的示例代码

《Java接口定义变量的示例代码》文章介绍了Java接口中的变量和方法,接口中的变量必须是publicstaticfinal的,用于定义常量,而方法默认是publicabstract的,必须由实现类... 在 Java 中,接口是一种抽象类型,用于定义类必须实现的方法。接口可以包含常量和方法,但不能包含实例