gpt4 book ai didi

SpringBoot : how to inject two classes having same name

转载 作者:行者123 更新时间:2023-12-02 06:13:52 25 4
gpt4 key购买 nike

在我的应用程序中,我有两个具有相同名称的类,但当然位于不同的包中。

这两个类都需要注入(inject)到应用程序中;不幸的是,我收到以下错误消息:

Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'myFeature' for bean class [org.pmesmeur.springboot.training.service.feature2.MyFeature] conflicts with existing, non-compatible bean definition of same name and class [org.pmesmeur.springboot.training.service.feature1.MyFeature]

我的问题可以通过以下示例重现:

@Component
@EnableConfigurationProperties(ServiceProperties.class)
public class MyService implements IService {

private final ServiceProperties serviceProperties;
private final IProvider provider;
private final org.pmesmeur.springboot.training.service.feature1.IMyFeature f1;
private final org.pmesmeur.springboot.training.service.feature2.IMyFeature f2;


@Autowired
public MyService(ServiceProperties serviceProperties,
IProvider provider,
org.pmesmeur.springboot.training.service.feature1.IMyFeature f1,
org.pmesmeur.springboot.training.service.feature2.IMyFeature f2) {
this.serviceProperties = serviceProperties;
this.provider = provider;
this.f1 = f1;
this.f2 = f2;
}
...
<小时/>
package org.pmesmeur.springboot.training.service.feature1;

public interface IMyFeature {

void print();

}
<小时/>
package org.pmesmeur.springboot.training.service.feature1;

import org.springframework.stereotype.Component;

@Component
public class MyFeature implements IMyFeature {

@Override
public void print() {
System.out.print("HelloWorld");
}

}
<小时/>
package org.pmesmeur.springboot.training.service.feature2;

public interface IMyFeature {

void print();

}
<小时/>
package org.pmesmeur.springboot.training.service.feature2;

import org.springframework.stereotype.Component;


@Component
public class MyFeature implements IMyFeature {

@Override
public void print() {
System.out.print("FooBar");
}

}

如果我为我的类使用不同的名称MyFeature,我的问题就会消失!!!

我习惯使用Guice,这个框架没有这种问题/限制

It seems that the spring dependencies injection framework uses only the class-name instead of package-name + class-name in order to select its classes.

在“现实生活”中,我在一个更大的项目中遇到了这个问题,我强烈希望不必重命名我的类:任何人都可以帮助我吗?

One last point, I would prefer to avoid "tricks" such as using @Qualifier(value = "ABC") when injecting my classes: in my sample, there should be no ambiguity for finding the correct instance of MyFeature as they do not implement the same interface

最佳答案

简单地重新实现BeanNameGenerator会为通过名称声明/实例化的bean添加一个新问题

@Component("HelloWorld")
class MyComponent implements IComponent {
...
}

@Qualifier(value = "HelloWorld") IComponent component

我通过扩展 AnnotationBeanNameGenerator 并重新定义方法 buildDefaultBeanName() 解决了这个问题

static class BeanNameGeneratorIncludingPackageName extends AnnotationBeanNameGenerator {

public BeanNameGeneratorIncludingPackageName() {
}

@Override
public String buildDefaultBeanName(BeanDefinition beanDefinition, BeanDefinitionRegistry beanDefinitionRegistry) {
return beanDefinition.getBeanClassName();
}

}

关于SpringBoot : how to inject two classes having same name,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57140430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com