我将代码编辑为以下配置:
@SpringBootApplication
public class EndPoint {
String QUEUE_PROCESSING_TRANSACTION = "processing-process-queue";
String QUEUE_DATABASE_TRANSACTION = "database-transa-queue";
......
@Bean
public Queue queueProcessingTransaction() {
return new Queue(QUEUE_PROCESSING_TRANSACTION, true);
}
@Bean
public Queue queueDatabaseEventLogs() {
return new Queue(QUEUE_DATABASE_EVENT_LOGS, true);
}
@Bean
public Binding bindingQueueProcessingTransaction() {
return BindingBuilder.bind(new Queu........
}
@Bean
public CachingConnectionFactory connectionFactory() {
CachingConnectionFactory connectionFactory = new CachingConnectionFactory(HOST);
return connectionFactory;
}
@Bean
public AmqpAdmin amqpAdmin(CachingConnectionFactory connectionFactory) {
RabbitAdmin admin = new RabbitAdmin(connectionFactory);
.........
admin.declareQueue(new Queue(QUEUE_PROCESSING_TRANSACTION, true));
return admin;
}
@Bean
public RabbitTemplate processingTemplate(CachingConnectionFactory connectionFactory) {
RabbitTemplate processingTemplate = new RabbitTemplate(connectionFactory);
processingTemplate.setExchange(EXCHANGE_PROCESSING);
.......
return processingTemplate;
}
以前,我将此配置用于Java类中,为了访问RabbitTemplate,我在第二个Java类中对其进行了扩展。 如何在Java类中使用RabbitTemplate?也许已经在Spring设计了已经实现的设施?
答案 0 :(得分:2)
您可以添加另一个从连接工厂开始创建模板的bean:
@Bean
public RabbitTemplate rabbitTemplate(CachingConnectionFactory connectionFactory) {
RabbitTemplate rabbitTemplate = new RabbitTemplate(connectionFactory);
return rabbitTemplate;
}
您可以在容器托管的类中对其进行自动接线:
@Autowired private RabbitTemplate rabbitTemplate;
答案 1 :(得分:2)
您可以将RabbitTemplate bean注入另一个Spring Bean中并使用它,例如,您可以创建一个新的Spring Bean(组件),如下所示:
@Component
public class MyComponent {
@Autowired
private RabbitTemplate template;
public void testRabbitTemplate() {
System.out.println(template);
}
}
请记住,只有在您从Spring Context中检索MyComponent
时,注入才起作用(即,您不能使用new
关键字实例化注入)。
您还可以在EndPoint
类中注入相同的RabbitTemplate,只需将以下行添加到类主体中即可:
@Autowired private RabbitTemplate template;