You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitAutoConfiguration.java
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,9 @@ public CachingConnectionFactory rabbitConnectionFactory(RabbitProperties propert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,11 @@ public class RabbitProperties {
96
96
*/
97
97
privatebooleanpublisherReturns;
98
98
99
+
/**
100
+
* Whether to enable simple publisher confirms.
101
+
*/
102
+
privatebooleansimplePublisherConfirms;
103
+
99
104
/**
100
105
* Connection timeout. Set it to zero to wait forever.
101
106
*/
@@ -290,6 +295,14 @@ public void setPublisherReturns(boolean publisherReturns) {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/amqp/RabbitAutoConfigurationTests.java
0 commit comments