java 1种以上注射用组分[一式两份]

siotufzp  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(193)

此问题在此处已有答案

Required Multiple beans of same type in Spring(3个答案)
4天前关闭。
我试图完全了解依赖注入机制,以及IoC容器的功能。我创建了一个带有接口及其实现的简单项目:

  1. public interface Animal {
  2. public void makeSound();
  3. }
  4. @Component
  5. public class Dog implements Animal {
  6. @Override
  7. public void makeSound() {
  8. System.out.println("Woof woof");
  9. }
  10. }
  11. @Component
  12. public class Cat implements Animal {
  13. @Override
  14. public void makeSound() {
  15. System.out.println("Meow meow");
  16. }
  17. }

字符串

  • Animal* 接口的对象正在另一个类中使用和自动连接,然后在Main中初始化所有对象:
  1. @Repository
  2. public class Shelter {
  3. private Animal animal;
  4. @Autowired
  5. public Shelter(Animal animal) {
  6. this.animal = animal;
  7. }
  8. public void doTheThing() {
  9. animal.makeSound();
  10. }
  11. }
  12. @SpringBootApplication
  13. public class Main{
  14. public static void main(String[] args) {
  15. ConfigurableApplicationContext context = SpringApplication.run(Main.class);
  16. Shelter shelter = context.getBean(Shelter.class);
  17. Shelter anotherShelter = context.getBean(Shelter.class);
  18. shelter.doTheThing();
  19. anotherShelter.doTheThing();
  20. }
  21. }


现在,在 Animal 接口的其中一个实现上没有**@Primary**注解编译会抛出错误,因为Spring不知道使用哪个实现。我理解这一点。但现在我想知道,我如何才能将不同的实现注入到 shelteranotherShelter 字段“private Animal animal”(当然是通过构造函数注入)?这是可能的吗?换句话说:我想让 shelter 使用 Dog 的实现,而 anotherShelter 使用 Cat 的实现。

piok6c0g

piok6c0g1#

在你的位置“cat”/“dog”中,使用@ browser注解,并指定实现的名称(从小写字母开始)!

相关问题