From ceffa285735d3ab132671f3e8448c18a4fc4db9f Mon Sep 17 00:00:00 2001 From: markswell menezes Date: Sun, 13 Aug 2023 22:07:24 -0300 Subject: [PATCH 1/2] Add simpleContainer to properties files as: spring.rabbitmq.spring.rabbitmq --- .../boot/autoconfigure/amqp/RabbitProperties.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java index 4e95d7346bf9..f5f8bc4802de 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java @@ -146,6 +146,11 @@ public class RabbitProperties { private List
parsedAddresses; + /** + * Simple container configuration + */ + private SimpleContainer simpleContainer; + public String getHost() { return this.host; } @@ -372,6 +377,10 @@ public Template getTemplate() { return this.template; } + public SimpleContainer getSimpleContainer() { + return this.simpleContainer; + } + public Stream getStream() { return this.stream; } From d50d480c36718f2507081460637b77c6819144b5 Mon Sep 17 00:00:00 2001 From: markswell menezes Date: Sun, 13 Aug 2023 22:07:24 -0300 Subject: [PATCH 2/2] Add simpleContainer to properties files as: spring.rabbitmq.spring.rabbitmq --- .../boot/autoconfigure/amqp/RabbitProperties.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java index 4e95d7346bf9..f5f8bc4802de 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java @@ -146,6 +146,11 @@ public class RabbitProperties { private List
parsedAddresses; + /** + * Simple container configuration + */ + private SimpleContainer simpleContainer; + public String getHost() { return this.host; } @@ -372,6 +377,10 @@ public Template getTemplate() { return this.template; } + public SimpleContainer getSimpleContainer() { + return this.simpleContainer; + } + public Stream getStream() { return this.stream; }