spring-protobuf spring-mockito spring-mustache spring-kafka spring-jooq spring-cucumber spring-aop spring-amqp-simple
71 lines
2.9 KiB
Java
71 lines
2.9 KiB
Java
package com.baeldung.springamqpsimple.broadcast;
|
|
|
|
import org.springframework.amqp.core.BindingBuilder;
|
|
import org.springframework.amqp.core.Declarable;
|
|
import org.springframework.amqp.core.DirectExchange;
|
|
import org.springframework.amqp.core.FanoutExchange;
|
|
import org.springframework.amqp.core.Queue;
|
|
import org.springframework.amqp.core.TopicExchange;
|
|
import org.springframework.amqp.rabbit.config.SimpleRabbitListenerContainerFactory;
|
|
import org.springframework.amqp.rabbit.connection.ConnectionFactory;
|
|
import org.springframework.boot.autoconfigure.amqp.SimpleRabbitListenerContainerFactoryConfigurer;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.Profile;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
@Configuration
|
|
@Profile("!test")
|
|
public class BroadcastConfig {
|
|
|
|
public final static String fanoutQueue1Name = "com.baeldung.spring-amqp-simple.fanout.queue1";
|
|
public final static String fanoutQueue2Name = "com.baeldung.spring-amqp-simple.fanout.queue2";
|
|
public final static String fanoutExchangeName = "com.baeldung.spring-amqp-simple.fanout.exchange";
|
|
|
|
public final static String topicQueue1Name = "com.baeldung.spring-amqp-simple.topic.queue1";
|
|
public final static String topicQueue2Name = "com.baeldung.spring-amqp-simple.topic.queue2";
|
|
public final static String topicExchangeName = "com.baeldung.spring-amql-simple.topic.exchange";
|
|
|
|
@Bean
|
|
public List<Declarable> topicBindings() {
|
|
Queue topicQueue1 = new Queue(topicQueue1Name, false);
|
|
Queue topicQueue2 = new Queue(topicQueue2Name, false);
|
|
|
|
TopicExchange topicExchange = new TopicExchange(topicExchangeName);
|
|
|
|
return Arrays.asList(
|
|
topicQueue1,
|
|
topicQueue2,
|
|
topicExchange,
|
|
BindingBuilder.bind(topicQueue1).to(topicExchange).with("*.important.*"),
|
|
BindingBuilder.bind(topicQueue2).to(topicExchange).with("user.#")
|
|
);
|
|
}
|
|
|
|
@Bean
|
|
public List<Declarable> fanoutBindings() {
|
|
Queue fanoutQueue1 = new Queue(fanoutQueue1Name, false);
|
|
Queue fanoutQueue2 = new Queue(fanoutQueue2Name, false);
|
|
|
|
FanoutExchange fanoutExchange = new FanoutExchange(fanoutExchangeName);
|
|
|
|
return Arrays.asList(
|
|
fanoutQueue1,
|
|
fanoutQueue2,
|
|
fanoutExchange,
|
|
BindingBuilder.bind(fanoutQueue1).to(fanoutExchange),
|
|
BindingBuilder.bind(fanoutQueue2).to(fanoutExchange)
|
|
);
|
|
}
|
|
|
|
@Bean
|
|
public SimpleRabbitListenerContainerFactory BroadcastContainer(ConnectionFactory connectionFactory, SimpleRabbitListenerContainerFactoryConfigurer configurer) {
|
|
SimpleRabbitListenerContainerFactory factory = new SimpleRabbitListenerContainerFactory();
|
|
configurer.configure(factory, connectionFactory);
|
|
return factory;
|
|
}
|
|
|
|
}
|