spring boot 中的 @qualifier 注解用于解决当您有多个相同类型的 bean 但想要注入特定的 bean 时出现的歧义。当存在多个候选者时,它可以帮助 spring 确定应该自动装配哪个 bean。
以下是 @qualifier 有用的所有常见场景,并附有示例:
场景 1:相同类型的多个 bean
您可能有多个相同类型的 bean,并且您想注入特定的一个。
示例:
import org.springframework.stereotype.component; @component public class dog implements animal { @override public string sound() { return "bark"; } } @component public class cat implements animal { @override public string sound() { return "meow"; } }
登录后复制
这里,dog 和 cat 都实现了 animal 接口。
@qualifier 的用法:
import org.springframework.beans.factory.annotation.autowired; import org.springframework.beans.factory.annotation.qualifier; import org.springframework.stereotype.service; @service public class animalservice { private final animal animal; @autowired public animalservice(@qualifier("cat") animal animal) { this.animal = animal; } public string getanimalsound() { return animal.sound(); } }
登录后复制
在此示例中,@qualifier("cat") 注解指定应将 cat bean 注入到 animalservice 中。如果没有 @qualifier,spring 会因歧义而抛出异常。
场景 2:将 @qualifier 与主要和次要 bean 一起使用
有时,您可能有一个“主要”bean 和其他不常用的 bean,但您仍然希望能够使用 @qualifier 注入特定的 bean。
示例:
@component @primary public class dog implements animal { @override public string sound() { return "bark"; } } @component public class cat implements animal { @override public string sound() { return "meow"; } }
登录后复制
@primary 注解确保默认注入 dog。但你仍然可以使用@qualifier来注入cat。
使用@qualifier来覆盖@primary:
@service public class animalservice { private final animal animal; @autowired public animalservice(@qualifier("cat") animal animal) { this.animal = animal; } public string getanimalsound() { return animal.sound(); } }
登录后复制
在本例中,尽管 dog 被标记为 @primary,但由于 @qualifier 注解,cat bean 仍被注入。
场景 3:带有构造函数注入和字段注入的 @qualifier
@qualifier 可以与基于构造函数和基于字段的注入一起使用。
示例:使用 @qualifier 进行字段注入:
@service public class animalservice { @autowired @qualifier("dog") private animal animal; public string getanimalsound() { return animal.sound(); } }
登录后复制
在这种情况下,@qualifier("dog") 确保将 dog bean 注入到 animalservice 中。
场景 4:带有方法参数注入的 @qualifier
通过方法参数注入依赖时也可以使用@qualifier。
示例:
@service public class animalservice { private animal animal; @autowired public void setanimal(@qualifier("dog") animal animal) { this.animal = animal; } public string getanimalsound() { return animal.sound(); } }
登录后复制
这里,@qualifier("dog") 确保通过 setter 方法注入 dog bean。
场景 5:带有自定义注释的 @qualifier
您可以创建自定义限定符以避免硬编码 bean 名称,从而使代码更干净且更易于维护。
示例:自定义限定符:
创建自定义限定符:
import org.springframework.beans.factory.annotation.qualifier; import java.lang.annotation.retention; import java.lang.annotation.retentionpolicy; @qualifier @retention(retentionpolicy.runtime) public @interface dogqualifier { }
登录后复制
应用自定义限定符:
@component @dogqualifier public class dog implements animal { @override public string sound() { return "bark"; } } @component public class cat implements animal { @override public string sound() { return "meow"; } }
登录后复制
使用自定义限定符注入:
@service public class animalservice { private final animal animal; @autowired public animalservice(@dogqualifier animal animal) { this.animal = animal; } public string getanimalsound() { return animal.sound(); } }
登录后复制
在这个例子中,@dogqualifier用于指定要注入哪个bean,而不是使用@qualifier("dog")。
场景 6:集合中的 @qualifier
在自动装配 bean 集合时可以使用 @qualifier,以确保只注入特定的 bean。
示例:
import org.springframework.beans.factory.annotation.qualifier; import org.springframework.stereotype.component; @component @qualifier("domestic") public class dog implements animal { @override public string sound() { return "bark"; } } @component @qualifier("domestic") public class cat implements animal { @override public string sound() { return "meow"; } } @component public class lion implements animal { @override public string sound() { return "roar"; } }
登录后复制
与集合一起使用:
@Service public class AnimalService { private final List<animal> animals; @Autowired public AnimalService(@Qualifier("domestic") List<animal> animals) { this.animals = animals; } public void printAnimalSounds() { animals.forEach(animal -> System.out.println(animal.sound())); } } </animal></animal>
登录后复制
在此示例中,仅注入 dog 和 cat beans,因为它们被标记为 @qualifier("domestic")。
摘要:
当存在多个相同类型的候选者时,@qualifier 有助于注入特定的 beans。
它用于构造函数注入、字段注入、方法注入、自定义限定符甚至集合等场景。
通过了解这些场景,您可以有效地使用 @qualifier 来解决歧义并管理 spring boot 应用程序中的 bean 注入。
以上就是@Qualifier 注解 Spring Boot 详解的详细内容,更多请关注抖狐科技其它相关文章!
-
python爬虫怎么设置定时
在 python 爬虫中,可以使用 schedule 模块设置定时任务,每隔指定时间执行爬取任务,确保数据定期更新。Python爬虫定时设置 在使用Python进行网络爬取时,定时爬取是一个重要的需求...
-
如何优化 Golang 函数并发编程的性能?
5 个优化 go 语言函数并发性能的技巧:并发化 i/o 操作:使用 io.pipe() 和 io.copy() 创建并发管道。利用通道:使用通道传输数据,避免使用锁。go 调度:使用 runtime...
-
下一站江湖2婚宴惊变如何解谜 婚宴惊变解密方法
《下一站江湖2》中的“婚宴惊变”解密任务考验着玩家的逻辑思维能力和观察力。在任务中,玩家需要仔细搜集线索,从对话、物品交互和场景探索中抽丝剥茧,揭开背后的真相。php小编百草精心整理了本任务的攻略,欢...
-
将 PHP 函数集成到 C 扩展中的步骤详解
将 php 函数集成到 c 扩展中可扩展 php 核心功能,实现步骤包括:创建 php 配置文件,为扩展添加入口,实现扩展,在扩展初始化函数中注册 php 函数,最后在 php 代码中加载并使用扩展。...
-
崩坏星穹铁道朱明棋友怎么通关 崩坏星穹铁道朱明棋友通关攻略
崩坏星穹铁道朱明棋友怎么通关?崩坏星穹铁道朱明棋友需要前往竞锋舰1层中间的大厅处,和朱明的棋友对话接取任务。很多小伙伴还不知道崩坏星穹铁道朱明棋友怎么通关,下面给大家整理了崩坏星穹铁道朱明棋友通关攻略...