【发布时间】:2018-02-09 16:44:21
【问题描述】:
我的集成测试在启动时遇到性能问题。
我正在尝试模拟系统的消息传递。为此,我基本上在网关上使用@MockBean 并使用@EnableAutoConfiguration(exclude = {RabbitAutoConfiguration.class})。示例:
@RunWith(SpringRunner.class)
@SpringBootTest(classes = MyApplication.class)
@WebAppConfiguration
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD)
@ActiveProfiles("test")
@EnableAutoConfiguration(exclude = {RabbitAutoConfiguration.class})
public class MyTestIT {
这两个配置做得很好,我的测试运行没有问题,并且与一些外部 RabbitMQ 没有任何依赖关系。
但是spring boot的启动时间非常非常慢。配置SimpleMessageListenerContainer、AmqpInboundChannelAdapter、EventDrivenConsumer、RabbitExchangeQueueProvisioner等这部分只需要两分钟左右。
日志中有一些关于问题所在的提示(我剪掉了很多消息,这是一个示例):
2018-02-09 14:26:37.784 INFO [ms-project-name-service,,,] 13804 --- [ main] o.s.integration.channel.DirectChannel : Channel 'ms-project-name-service:test:-1.channel2-output' has 1 subscriber(s).
2018-02-09 14:26:54.110 INFO [ms-project-name-service,,,] 13804 --- [ main] c.s.b.r.p.RabbitExchangeQueueProvisioner : declaring queue for inbound: channel1-input.anonymous.417FtxKTTce7-_IR0tGuNA, bound to: channel1-input
2018-02-09 14:27:00.147 INFO [ms-project-name-service,,,] 13804 --- [ main] o.s.c.stream.binder.BinderErrorChannel : Channel 'ms-project-name-service:test:-1.channel1-input.anonymous.417FtxKTTce7-_IR0tGuNA.errors' has 2 subscriber(s).
2018-02-09 14:27:09.186 INFO [ms-project-name-service,,,] 13804 --- [ce7-_IR0tGuNA-1] o.s.a.r.l.SimpleMessageListenerContainer : Restarting Consumer@4f0ea6f8: tags=[{}], channel=null, acknowledgeMode=AUTO local queue size=0
最奇怪的是这个:
2018-02-09 14:58:42.783 WARN [ms-project-name-service,,,] 208 --- [geGeQP_9Li3Jg-1] o.s.a.r.l.SimpleMessageListenerContainer : Consumer raised exception, processing can restart if the connection factory supports it. Exception summary: org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: connect
最后一个似乎还在尝试连接本地的 RabbitMQ。
日志中有很多这样的消息。我不明白为什么即使禁用了 RabbitMQAutoConfiguration 仍然会发生这种情况。如果没有 RabbitMQ 连接,spring 是如何订阅频道的也是一个谜。
【问题讨论】:
-
添加了几个标签,希望有使用spring boot经验的人可以提供帮助。编程方面不会有太多帮助,因为问题实际上可能出现在代码中的任何地方。你做了什么调试(我假设可以调试测试的启动)?
标签: spring spring-boot rabbitmq integration-testing spring-boot-test