We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@Bean public AmqpTemplate template(ConnectionFactory connectionFactory) { RabbitTemplate template = new RabbitTemplate(connectionFactory); template.setMessageConverter(messageConverter()); return template; }
I get an error for the ConnectionFactory connectionFactory method argument: Could not autowire. No beans of 'ConnectionFactory' type found.
@Bean public AmqpTemplate template(ConnectionFactory connectionFactory) { RabbitTemplate template = new RabbitTemplate(connectionFactory); template.setMessageConverter(messageConverter()); return template; }I get an error for the ConnectionFactory connectionFactory method argument:
Could not autowire. No beans of 'ConnectionFactory' type found.