Skip to content

Commit 88e4d9f

Browse files
committed
Merge branch 'main' into 4.0.x
2 parents 750bf53 + 9910bd8 commit 88e4d9f

12 files changed

+61
-17
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/AbstractConnectionFactoryConfigurer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@
2424
import org.springframework.util.Assert;
2525

2626
/**
27-
* Configures {@link AbstractConnectionFactory Rabbit ConnectionFactory} with sensible
28-
* defaults.
27+
* Base class for configurers of sub-classes of {@link AbstractConnectionFactory}.
2928
*
3029
* @param <T> the connection factory type.
3130
* @author Chris Bono

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/AbstractRabbitListenerContainerFactoryConfigurer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import org.springframework.amqp.rabbit.config.AbstractRabbitListenerContainerFactory;
2323
import org.springframework.amqp.rabbit.config.RetryInterceptorBuilder;
2424
import org.springframework.amqp.rabbit.connection.ConnectionFactory;
25-
import org.springframework.amqp.rabbit.listener.RabbitListenerContainerFactory;
2625
import org.springframework.amqp.rabbit.retry.MessageRecoverer;
2726
import org.springframework.amqp.rabbit.retry.RejectAndDontRequeueRecoverer;
2827
import org.springframework.amqp.support.converter.MessageConverter;
@@ -31,7 +30,8 @@
3130
import org.springframework.util.Assert;
3231

3332
/**
34-
* Configure {@link RabbitListenerContainerFactory} with sensible defaults.
33+
* Base class for configurers of sub-classes of
34+
* {@link AbstractRabbitListenerContainerFactory}.
3535
*
3636
* @param <T> the container factory type.
3737
* @author Gary Russell

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/CachingConnectionFactoryConfigurer.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@
2222
import org.springframework.boot.context.properties.PropertyMapper;
2323

2424
/**
25-
* Configures Rabbit {@link CachingConnectionFactory} with sensible defaults.
25+
* Configures Rabbit {@link CachingConnectionFactory} with sensible defaults tuned using
26+
* configuration properties.
27+
* <p>
28+
* Can be injected into application code and used to define a custom
29+
* {@code CachingConnectionFactory} whose configuration is based upon that produced by
30+
* auto-configuration.
2631
*
2732
* @author Chris Bono
2833
* @author Moritz Halbritter

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/DirectRabbitListenerContainerFactoryConfigurer.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -21,8 +21,12 @@
2121
import org.springframework.boot.context.properties.PropertyMapper;
2222

2323
/**
24-
* Configure {@link DirectRabbitListenerContainerFactoryConfigurer} with sensible
25-
* defaults.
24+
* Configure {@link DirectRabbitListenerContainerFactory} with sensible defaults tuned
25+
* using configuration properties.
26+
* <p>
27+
* Can be injected into application code and used to define a custom
28+
* {@code DirectRabbitListenerContainerFactory} whose configuration is based upon that
29+
* produced by auto-configuration.
2630
*
2731
* @author Gary Russell
2832
* @author Stephane Nicoll

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitConnectionFactoryBeanConfigurer.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@
3131
import org.springframework.util.unit.DataSize;
3232

3333
/**
34-
* Configures {@link RabbitConnectionFactoryBean} with sensible defaults.
34+
* Configures {@link RabbitConnectionFactoryBean} with sensible defaults tuned using
35+
* configuration properties.
36+
* <p>
37+
* Can be injected into application code and used to define a custom
38+
* {@code RabbitConnectionFactoryBean} whose configuration is based upon that produced by
39+
* auto-configuration.
3540
*
3641
* @author Chris Bono
3742
* @author Moritz Halbritter

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitStreamTemplateConfigurer.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,6 +23,10 @@
2323

2424
/**
2525
* Configure {@link RabbitStreamTemplate} with sensible defaults.
26+
* <p>
27+
* Can be injected into application code and used to define a custom
28+
* {@code RabbitStreamTemplate} whose configuration is based upon that produced by
29+
* auto-configuration.
2630
*
2731
* @author Eddú Meléndez
2832
* @since 2.7.0

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitTemplateConfigurer.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@
2929
import org.springframework.util.CollectionUtils;
3030

3131
/**
32-
* Configure {@link RabbitTemplate} with sensible defaults.
32+
* Configure {@link RabbitTemplate} with sensible defaults tuned using configuration
33+
* properties.
34+
* <p>
35+
* Can be injected into application code and used to define a custom
36+
* {@code RabbitTemplateConfigurer} whose configuration is based upon that produced by
37+
* auto-configuration.
3338
*
3439
* @author Stephane Nicoll
3540
* @author Yanming Zhou

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/SimpleRabbitListenerContainerFactoryConfigurer.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2022 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -21,8 +21,12 @@
2121
import org.springframework.boot.context.properties.PropertyMapper;
2222

2323
/**
24-
* Configure {@link SimpleRabbitListenerContainerFactoryConfigurer} with sensible
25-
* defaults.
24+
* Configure {@link SimpleRabbitListenerContainerFactory} with sensible defaults tuned
25+
* using configuration properties.
26+
* <p>
27+
* Can be injected into application code and used to define a custom
28+
* {@code SimpleRabbitListenerContainerFactory} whose configuration is based upon that
29+
* produced by auto-configuration.
2630
*
2731
* @author Stephane Nicoll
2832
* @author Gary Russell

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/DefaultJmsListenerContainerFactoryConfigurer.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@
3131
import org.springframework.util.Assert;
3232

3333
/**
34-
* Configure {@link DefaultJmsListenerContainerFactory} with sensible defaults.
34+
* Configure {@link DefaultJmsListenerContainerFactory} with sensible defaults tuned using
35+
* configuration properties.
36+
* <p>
37+
* Can be injected into application code and used to define a custom
38+
* {@code DefaultJmsListenerContainerFactory} whose configuration is based upon that
39+
* produced by auto-configuration.
3540
*
3641
* @author Stephane Nicoll
3742
* @author Eddú Meléndez

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/ConcurrentKafkaListenerContainerFactoryConfigurer.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@
3838
import org.springframework.kafka.transaction.KafkaAwareTransactionManager;
3939

4040
/**
41-
* Configure {@link ConcurrentKafkaListenerContainerFactory} with sensible defaults.
41+
* Configure {@link ConcurrentKafkaListenerContainerFactory} with sensible defaults tuned
42+
* using configuration properties.
43+
* <p>
44+
* Can be injected into application code and used to define a custom
45+
* {@code ConcurrentKafkaListenerContainerFactory} whose configuration is based upon that
46+
* produced by auto-configuration.
4247
*
4348
* @author Gary Russell
4449
* @author Eddú Meléndez

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/client/RestClientBuilderConfigurer.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727

2828
/**
2929
* Configure {@link Builder RestClient.Builder} with sensible defaults.
30+
* <p>
31+
* Can be injected into application code and used to define a custom
32+
* {@code RestClient.Builder} whose configuration is based upon that produced by
33+
* auto-configuration.
3034
*
3135
* @author Moritz Halbritter
3236
* @since 3.2.0

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/client/RestTemplateBuilderConfigurer.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2024 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -30,6 +30,10 @@
3030

3131
/**
3232
* Configure {@link RestTemplateBuilder} with sensible defaults.
33+
* <p>
34+
* Can be injected into application code and used to define a custom
35+
* {@code RestTemplateBuilder} whose configuration is based upon that produced by
36+
* auto-configuration.
3337
*
3438
* @author Stephane Nicoll
3539
* @since 2.4.0

0 commit comments

Comments
 (0)