|
| 1 | +package com.devdevx.examples.springbootrabbitmq.headers.config; |
| 2 | + |
| 3 | +import org.slf4j.Logger; |
| 4 | +import org.slf4j.LoggerFactory; |
| 5 | +import org.springframework.amqp.core.Binding; |
| 6 | +import org.springframework.amqp.core.BindingBuilder; |
| 7 | +import org.springframework.amqp.core.HeadersExchange; |
| 8 | +import org.springframework.amqp.core.Queue; |
| 9 | +import org.springframework.beans.factory.annotation.Qualifier; |
| 10 | +import org.springframework.beans.factory.annotation.Value; |
| 11 | +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
| 12 | +import org.springframework.context.annotation.Bean; |
| 13 | +import org.springframework.context.annotation.Configuration; |
| 14 | + |
| 15 | +import java.util.HashMap; |
| 16 | +import java.util.Map; |
| 17 | + |
| 18 | +@Configuration |
| 19 | +@ConditionalOnProperty(name = "app.rabbitmq.example", havingValue = "headers") |
| 20 | +public class HeadersRmqConfig { |
| 21 | + |
| 22 | + private static final Logger log = LoggerFactory.getLogger(HeadersRmqConfig.class); |
| 23 | + |
| 24 | + @Value("${app.rabbitmq.headers.exchange}") |
| 25 | + private String exchangeName; |
| 26 | + |
| 27 | + @Value("${app.rabbitmq.headers.queue-fast}") |
| 28 | + private String queueFast; |
| 29 | + |
| 30 | + @Value("${app.rabbitmq.headers.queue-slow}") |
| 31 | + private String queueSlow; |
| 32 | + |
| 33 | + @Bean |
| 34 | + HeadersExchange exchange() { |
| 35 | + log.info("Creating exchange: {}", exchangeName); |
| 36 | + return new HeadersExchange(exchangeName); |
| 37 | + } |
| 38 | + |
| 39 | + @Bean |
| 40 | + Queue queueFast() { |
| 41 | + log.info("Creating queue: {}", queueFast); |
| 42 | + return new Queue(queueFast, false); |
| 43 | + } |
| 44 | + |
| 45 | + @Bean |
| 46 | + Queue queueSlow() { |
| 47 | + log.info("Creating queue: {}", queueSlow); |
| 48 | + return new Queue(queueSlow, false); |
| 49 | + } |
| 50 | + |
| 51 | + @Bean |
| 52 | + Binding bindingFast(@Qualifier("queueFast") Queue queue, HeadersExchange exchange) { |
| 53 | + Map<String, Object> absolutePriority = new HashMap<>(); |
| 54 | + absolutePriority.put("priority", "high"); |
| 55 | + absolutePriority.put("client", "premium"); |
| 56 | + log.info("Binding queue '{}' to the exchange '{}' with all match '{}'", queueFast, exchangeName, absolutePriority); |
| 57 | + return BindingBuilder.bind(queue).to(exchange).whereAll(absolutePriority).match(); |
| 58 | + } |
| 59 | + |
| 60 | + @Bean |
| 61 | + Binding bindingSlow(@Qualifier("queueSlow") Queue queue, HeadersExchange exchange) { |
| 62 | + Map<String, Object> otherPriority = new HashMap<>(); |
| 63 | + otherPriority.put("priority", "normal"); |
| 64 | + otherPriority.put("client", "basic"); |
| 65 | + log.info("Binding queue '{}' to the exchange '{}' with any match '{}'", queueSlow, exchangeName, otherPriority); |
| 66 | + return BindingBuilder.bind(queue).to(exchange).whereAny(otherPriority).match(); |
| 67 | + } |
| 68 | +} |
0 commit comments