java – Spring Boot:当自动装配具体类时,“找不到类型的限定bean …”

前端之家收集整理的这篇文章主要介绍了java – Spring Boot:当自动装配具体类时,“找不到类型的限定bean …”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用Spring Boot和Spring Boot JPA编写一个组件.我有这样的设置:

界面:

public interface Something {
    // method definitions
}

实施:

@Component
public class SomethingImpl implements Something {
    // implementation
}

现在,我有一个使用SpringJUnit4ClassRunner运行的JUnit测试,我想用它来测试我的SomethingImpl.

当我做

@Autowired
private Something _something;

它有效,但是

@Autowired
private SomethingImpl _something;

导致测试失败抛出NoSuchBeanDefinitionException并且消息没有找到类型为[com.example.SomethingImpl]的限定bean依赖:预期至少有1个bean有资格作为此依赖项的autowire候选者.依赖注释:{@ org.springframework.beans.factory.annotation.Autowired(required = true)}

但是在测试用例中,我想明确地注入我的SomethingImpl,因为它是我想要测试的类.我怎么做到这一点?

最佳答案
如果你想要一个特殊的bean,你必须使用@Qualifier注释:

@Autowired
@Qualifier("SomethingImpl")
private Something _something;
原文链接:https://www.f2er.com/spring/431758.html

猜你在找的Spring相关文章