We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@Bean public ConnectionFactory connectionFactory() { CachingConnectionFactory connectionFactory = new CachingConnectionFactory(host, port); connectionFactory.setUsername(username); connectionFactory.setPassword(password); LOGGER.info("Create RabbitMQ connection factory with : " + username + "@" + host + ":" + port); return connectionFactory; }
위와 같이 ConnectionFactory 가 성공적으로 생성되고 @Bean 을 통해 주입되는 것을 확인했다.
@Bean
위와 같이 AMQP protocol version mismatch; we are version 0-9-1, server sent signature 3,1,0,0 라는 이유로 Exception 발생
AMQP protocol version mismatch; we are version 0-9-1, server sent signature 3,1,0,0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
버그 상황
위와 같이 ConnectionFactory 가 성공적으로 생성되고
@Bean
을 통해 주입되는 것을 확인했다.But
위와 같이
AMQP protocol version mismatch; we are version 0-9-1, server sent signature 3,1,0,0
라는 이유로 Exception 발생The text was updated successfully, but these errors were encountered: