我有以下Spring Boot应用程序(使用Eureka和Feign):
@SpringBootApplication
@EnableFeignClients
@EnableRabbit
@EnableDiscoveryClient
@EnableTransactionManagement(proxyTargetClass = true)
public class EventServiceApplication {
public static void main(String[] args) throws Exception {
SpringApplication.run(EventServiceApplication.class, args);
}
}
以及以下测试,使用@SpringJpaTest注释:
@RunWith(SpringRunner.class)
@DataJpaTest(showSql = true)
public class EventRepositoryTest {
@Autowired
private TestEntityManager entityManager;
@Autowired
private EventRepository repository;
@Test
public void testPersist() {
this.entityManager.persist(new PhoneCall());
List<Event> list = this.repository.findAll();
assertEquals(1, list.size());
}
}
运行测试时,我收到以下错误:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.netflix.discovery.EurekaClient] found for dependency [com.netflix.discovery.EurekaClient]: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {}
完整的堆栈跟踪here
有没有办法解决这个问题?我发现它是由@EnableFeignClients和@EnableDiscoveryClient注释引起的。
答案 0 :(得分:3)
最后,我设法通过以下方式解决了我的问题:
添加了bootstrap.yml,其中包含以下内容:
eureka:
client:
enabled: false
spring:
cloud:
discovery:
enabled: false
config:
enabled: false
我编写了一个测试配置并在测试中引用它:
@ContextConfiguration(classes = EventServiceApplicationTest.class)
其中EventServiceApplicationTest是:
@SpringBootApplication
@EnableTransactionManagement(proxyTargetClass = true)
public class EventServiceApplicationTest {}
我不知道是否有最简单的方法,但这有效。
答案 1 :(得分:1)
我遇到与 @EnableDiscoveryClient 类似的问题。
我认为在这种情况下,最简单的方法是禁用信息:
eureka:
client:
enabled: false
src/test/resources/application.[properties|yml]
中的。然后在运行测试期间,此配置的优先级高于src/main/resources/application.[properties|yml]
。
答案 2 :(得分:0)
由于我假设您只打算测试您的存储库层,因此您可以从与Feign等相关的ApplicationContext
中过滤掉不需要的bean。
您可以通过excludeFilters
的{{1}}属性配置排除过滤器。
有关过滤器的详细信息,请参阅Spring Reference Manual。
另一种选择是禁用Feign等的自动配置 - 在这种情况下,您可能会发现此答案很有用:Disable security for unit tests with spring boot
答案 3 :(得分:0)
最简单的方法是在测试类中添加以下配置:
@RunWith(SpringRunner.class)
@TestPropertySource(properties={"eureka.client.enabled=false"})
@DataJpaTest(showSql = true)
public class BankRepositoryTest {
}