2017-03-22 12:47:23 +00:00
|
|
|
package com.baeldung.springamqpsimple;
|
|
|
|
|
2017-04-19 12:02:42 +04:00
|
|
|
import org.springframework.amqp.core.Binding;
|
|
|
|
import org.springframework.amqp.core.BindingBuilder;
|
|
|
|
import org.springframework.amqp.core.DirectExchange;
|
|
|
|
import org.springframework.amqp.core.Exchange;
|
|
|
|
import org.springframework.amqp.core.Queue;
|
2017-03-22 12:47:23 +00:00
|
|
|
import org.springframework.amqp.rabbit.connection.ConnectionFactory;
|
|
|
|
import org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer;
|
|
|
|
import org.springframework.amqp.rabbit.listener.adapter.MessageListenerAdapter;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.context.annotation.Profile;
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
@Profile("!test")
|
|
|
|
public class SpringAmqpConfig {
|
|
|
|
|
|
|
|
public final static String queueName = "com.baeldung.spring-amqp-simple.queue";
|
|
|
|
public final static String exchangeName = "com.baeldung.spring-amqp-simple.exchange";
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
Queue queue() {
|
|
|
|
return new Queue(queueName, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
Exchange exchange() {
|
|
|
|
return new DirectExchange(exchangeName);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
Binding binding(Queue queue, DirectExchange exchange) {
|
|
|
|
return BindingBuilder.bind(queue).to(exchange).with(queueName);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Bean
|
2018-12-22 11:05:38 -02:00
|
|
|
SimpleMessageListenerContainer springAmqpContainer(ConnectionFactory connectionFactory,
|
2017-04-19 12:02:42 +04:00
|
|
|
MessageListenerAdapter listenerAdapter) {
|
2017-03-22 12:47:23 +00:00
|
|
|
SimpleMessageListenerContainer container = new SimpleMessageListenerContainer();
|
|
|
|
container.setConnectionFactory(connectionFactory);
|
|
|
|
container.setQueueNames(queueName);
|
|
|
|
container.setMessageListener(listenerAdapter);
|
|
|
|
return container;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
MessageListenerAdapter listenerAdapter(MessageConsumer messageReceiver) {
|
|
|
|
return new MessageListenerAdapter(messageReceiver, "receiveMessage");
|
|
|
|
}
|
|
|
|
}
|