` @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.