Browse Source

Merge branch '3.5.x'

Closes gh-46943
pull/46950/head
Andy Wilkinson 4 months ago
parent
commit
b42a060d0a
  1. 2
      module/spring-boot-activemq/src/main/java/org/springframework/boot/activemq/autoconfigure/ActiveMQConnectionFactoryCustomizer.java
  2. 4
      module/spring-boot-amqp/src/main/java/org/springframework/boot/amqp/autoconfigure/ConnectionFactoryCustomizer.java
  3. 3
      module/spring-boot-amqp/src/main/java/org/springframework/boot/amqp/autoconfigure/EnvironmentBuilderCustomizer.java
  4. 4
      module/spring-boot-artemis/src/main/java/org/springframework/boot/artemis/autoconfigure/ArtemisConfigurationCustomizer.java
  5. 4
      module/spring-boot-batch/src/main/java/org/springframework/boot/batch/autoconfigure/BatchConversionServiceCustomizer.java
  6. 4
      module/spring-boot-cache/src/main/java/org/springframework/boot/cache/autoconfigure/CouchbaseCacheManagerBuilderCustomizer.java
  7. 4
      module/spring-boot-cassandra/src/main/java/org/springframework/boot/cassandra/autoconfigure/CqlSessionBuilderCustomizer.java
  8. 4
      module/spring-boot-cassandra/src/main/java/org/springframework/boot/cassandra/autoconfigure/DriverConfigLoaderBuilderCustomizer.java
  9. 4
      module/spring-boot-couchbase/src/main/java/org/springframework/boot/couchbase/autoconfigure/ClusterEnvironmentBuilderCustomizer.java
  10. 4
      module/spring-boot-data-redis/src/main/java/org/springframework/boot/data/redis/autoconfigure/ClientResourcesBuilderCustomizer.java
  11. 5
      module/spring-boot-data-redis/src/main/java/org/springframework/boot/data/redis/autoconfigure/JedisClientConfigurationBuilderCustomizer.java
  12. 5
      module/spring-boot-data-redis/src/main/java/org/springframework/boot/data/redis/autoconfigure/LettuceClientConfigurationBuilderCustomizer.java
  13. 6
      module/spring-boot-data-redis/src/main/java/org/springframework/boot/data/redis/autoconfigure/LettuceClientOptionsBuilderCustomizer.java
  14. 6
      module/spring-boot-elasticsearch/src/main/java/org/springframework/boot/elasticsearch/autoconfigure/Rest5ClientBuilderCustomizer.java
  15. 5
      module/spring-boot-freemarker/src/main/java/org/springframework/boot/freemarker/autoconfigure/FreeMarkerVariablesCustomizer.java
  16. 2
      module/spring-boot-graphql/src/main/java/org/springframework/boot/graphql/autoconfigure/GraphQlSourceBuilderCustomizer.java
  17. 5
      module/spring-boot-gson/src/main/java/org/springframework/boot/gson/autoconfigure/GsonBuilderCustomizer.java
  18. 3
      module/spring-boot-hibernate/src/main/java/org/springframework/boot/hibernate/autoconfigure/HibernatePropertiesCustomizer.java
  19. 2
      module/spring-boot-integration/src/main/java/org/springframework/boot/integration/autoconfigure/PollerMetadataCustomizer.java
  20. 2
      module/spring-boot-jackson/src/main/java/org/springframework/boot/jackson/autoconfigure/Jackson2ObjectMapperBuilderCustomizer.java
  21. 2
      module/spring-boot-jooq/src/main/java/org/springframework/boot/jooq/autoconfigure/DefaultConfigurationCustomizer.java
  22. 4
      module/spring-boot-jpa/src/main/java/org/springframework/boot/jpa/autoconfigure/EntityManagerFactoryBuilderCustomizer.java
  23. 2
      module/spring-boot-micrometer-tracing/src/main/java/org/springframework/boot/micrometer/tracing/autoconfigure/otlp/OtlpGrpcSpanExporterBuilderCustomizer.java
  24. 2
      module/spring-boot-micrometer-tracing/src/main/java/org/springframework/boot/micrometer/tracing/autoconfigure/otlp/OtlpHttpSpanExporterBuilderCustomizer.java
  25. 4
      module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure/MongoClientSettingsBuilderCustomizer.java
  26. 6
      module/spring-boot-neo4j/src/main/java/org/springframework/boot/neo4j/autoconfigure/ConfigBuilderCustomizer.java
  27. 3
      module/spring-boot-pulsar/src/main/java/org/springframework/boot/pulsar/autoconfigure/PulsarContainerFactoryCustomizer.java
  28. 3
      module/spring-boot-quartz/src/main/java/org/springframework/boot/quartz/autoconfigure/SchedulerFactoryBeanCustomizer.java
  29. 4
      module/spring-boot-r2dbc/src/main/java/org/springframework/boot/r2dbc/autoconfigure/ConnectionFactoryOptionsBuilderCustomizer.java
  30. 5
      module/spring-boot-tx/src/main/java/org/springframework/boot/transaction/autoconfigure/TransactionManagerCustomizer.java
  31. 6
      module/spring-boot-web-server-test/src/main/java/org/springframework/boot/web/server/test/client/reactive/WebTestClientBuilderCustomizer.java

2
module/spring-boot-activemq/src/main/java/org/springframework/boot/activemq/autoconfigure/ActiveMQConnectionFactoryCustomizer.java

@ -20,7 +20,7 @@ import org.apache.activemq.ActiveMQConnectionFactory;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link ActiveMQConnectionFactory} whilst retaining default auto-configuration. * {@link ActiveMQConnectionFactory} to fine-tune its auto-configuration.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

4
module/spring-boot-amqp/src/main/java/org/springframework/boot/amqp/autoconfigure/ConnectionFactoryCustomizer.java

@ -19,8 +19,8 @@ package org.springframework.boot.amqp.autoconfigure;
import com.rabbitmq.client.ConnectionFactory; import com.rabbitmq.client.ConnectionFactory;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the RabbitMQ
* auto-configured RabbitMQ {@link ConnectionFactory}. * {@link ConnectionFactory} to fine-tune its auto-configuration.
* *
* @author Andy Wilkinson * @author Andy Wilkinson
* @since 4.0.0 * @since 4.0.0

3
module/spring-boot-amqp/src/main/java/org/springframework/boot/amqp/autoconfigure/EnvironmentBuilderCustomizer.java

@ -21,7 +21,8 @@ import com.rabbitmq.stream.EnvironmentBuilder;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* auto-configured {@link Environment} that is created by an {@link EnvironmentBuilder}. * {@link EnvironmentBuilder} to fine-tune its auto-configuration before it creates an
* {@link Environment}.
* *
* @author Andy Wilkinson * @author Andy Wilkinson
* @since 4.0.0 * @since 4.0.0

4
module/spring-boot-artemis/src/main/java/org/springframework/boot/artemis/autoconfigure/ArtemisConfigurationCustomizer.java

@ -21,8 +21,8 @@ import org.apache.activemq.artemis.core.server.embedded.EmbeddedActiveMQ;
/** /**
* Callback interface that can be implemented by beans wishing to customize the Artemis * Callback interface that can be implemented by beans wishing to customize the Artemis
* JMS server {@link Configuration} before it is used by an auto-configured * JMS server {@link Configuration} to fine-tune its auto-configuration before it is used
* {@link EmbeddedActiveMQ} instance. * by the auto-configured {@link EmbeddedActiveMQ} instance.
* *
* @author Eddú Meléndez * @author Eddú Meléndez
* @author Phillip Webb * @author Phillip Webb

4
module/spring-boot-batch/src/main/java/org/springframework/boot/batch/autoconfigure/BatchConversionServiceCustomizer.java

@ -20,8 +20,8 @@ import org.springframework.core.convert.support.ConfigurableConversionService;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link ConfigurableConversionService} that is used by the batch infrastructure while * {@link ConfigurableConversionService} to fine-tune its auto-configuration. The
* retaining its default auto-configuration. * conversion service is used by the Spring Batch infrastructure.
* *
* @author Claudio Nave * @author Claudio Nave
* @since 4.0.0 * @since 4.0.0

4
module/spring-boot-cache/src/main/java/org/springframework/boot/cache/autoconfigure/CouchbaseCacheManagerBuilderCustomizer.java vendored

@ -21,8 +21,8 @@ import org.springframework.data.couchbase.cache.CouchbaseCacheManager.CouchbaseC
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link CouchbaseCacheManagerBuilder} before it is used to build the auto-configured * {@link CouchbaseCacheManagerBuilder} to fine-tune its auto-configuration before it is
* {@link CouchbaseCacheManager}. * used to build the auto-configured {@link CouchbaseCacheManager}.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

4
module/spring-boot-cassandra/src/main/java/org/springframework/boot/cassandra/autoconfigure/CqlSessionBuilderCustomizer.java

@ -21,8 +21,8 @@ import com.datastax.oss.driver.api.core.CqlSessionBuilder;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link CqlSession} through a {@link CqlSessionBuilder} whilst retaining default * {@link CqlSessionBuilder} to fine-tune its auto-configuration before it creates a
* auto-configuration. * {@link CqlSession}.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

4
module/spring-boot-cassandra/src/main/java/org/springframework/boot/cassandra/autoconfigure/DriverConfigLoaderBuilderCustomizer.java

@ -21,8 +21,8 @@ import com.datastax.oss.driver.api.core.config.ProgrammaticDriverConfigLoaderBui
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link DriverConfigLoader} through a {@link DriverConfigLoaderBuilderCustomizer} whilst * {@link DriverConfigLoaderBuilderCustomizer} to fine-tune its auto-configuration before
* retaining default auto-configuration. * it creates a {@link DriverConfigLoader}.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

4
module/spring-boot-couchbase/src/main/java/org/springframework/boot/couchbase/autoconfigure/ClusterEnvironmentBuilderCustomizer.java

@ -21,8 +21,8 @@ import com.couchbase.client.java.env.ClusterEnvironment.Builder;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link ClusterEnvironment} through a {@link Builder ClusterEnvironment.Builder} whilst * {@link Builder ClusterEnvironment.Builder} to fine-tune its auto-configuration before
* retaining default auto-configuration. * it creates the {@link ClusterEnvironment}.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

4
module/spring-boot-data-redis/src/main/java/org/springframework/boot/data/redis/autoconfigure/ClientResourcesBuilderCustomizer.java

@ -21,8 +21,8 @@ import io.lettuce.core.resource.ClientResources.Builder;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link ClientResources} through a {@link Builder} whilst retaining default * {@link Builder} to fine-tune its auto-configuration before it creates the
* auto-configuration. * {@link ClientResources}.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

5
module/spring-boot-data-redis/src/main/java/org/springframework/boot/data/redis/autoconfigure/JedisClientConfigurationBuilderCustomizer.java

@ -21,9 +21,8 @@ import org.springframework.data.redis.connection.jedis.JedisClientConfiguration.
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link JedisClientConfiguration} through a {@link JedisClientConfigurationBuilder * {@link JedisClientConfigurationBuilder} to fine-tune its auto-configuration before it
* JedisClientConfiguration.JedisClientConfigurationBuilder} whilst retaining default * creates the {@link JedisClientConfiguration}.
* auto-configuration.
* *
* @author Mark Paluch * @author Mark Paluch
* @since 4.0.0 * @since 4.0.0

5
module/spring-boot-data-redis/src/main/java/org/springframework/boot/data/redis/autoconfigure/LettuceClientConfigurationBuilderCustomizer.java

@ -21,9 +21,8 @@ import org.springframework.data.redis.connection.lettuce.LettuceClientConfigurat
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link LettuceClientConfiguration} through a {@link LettuceClientConfigurationBuilder * {@link LettuceClientConfigurationBuilder} to fine-tune its auto-configuration before it
* LettuceClientConfiguration.LettuceClientConfigurationBuilder} whilst retaining default * creates the {@link LettuceClientConfiguration}. To customize only the
* auto-configuration. To customize only the
* {@link LettuceClientConfiguration#getClientOptions() client options} of the * {@link LettuceClientConfiguration#getClientOptions() client options} of the
* configuration, use {@link LettuceClientOptionsBuilderCustomizer} instead. * configuration, use {@link LettuceClientOptionsBuilderCustomizer} instead.
* *

6
module/spring-boot-data-redis/src/main/java/org/springframework/boot/data/redis/autoconfigure/LettuceClientOptionsBuilderCustomizer.java

@ -23,9 +23,9 @@ import org.springframework.data.redis.connection.lettuce.LettuceClientConfigurat
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link ClientOptions} of the {@link LettuceClientConfiguration} through a * {@link Builder} to fine-tune its auto-configuration before it creates the
* {@link Builder} whilst retaining default auto-configuration. To customize the entire * {@link ClientOptions} of the {@link LettuceClientConfiguration}. To customize the
* configuration, use {@link LettuceClientConfigurationBuilderCustomizer} instead. * entire configuration, use {@link LettuceClientConfigurationBuilderCustomizer} instead.
* *
* @author Soohyun Lim * @author Soohyun Lim
* @since 4.0.0 * @since 4.0.0

6
module/spring-boot-elasticsearch/src/main/java/org/springframework/boot/elasticsearch/autoconfigure/Rest5ClientBuilderCustomizer.java

@ -26,9 +26,9 @@ import org.apache.hc.client5.http.impl.async.HttpAsyncClientBuilder;
import org.apache.hc.client5.http.impl.nio.PoolingAsyncClientConnectionManagerBuilder; import org.apache.hc.client5.http.impl.nio.PoolingAsyncClientConnectionManagerBuilder;
/** /**
* Callback interface that can be implemented by beans wishing to further customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link Rest5Client} through a {@link Rest5ClientBuilder} whilst retaining default * {@link Rest5ClientBuilder} to fine-tune its auto-configuration before it creates a
* auto-configuration. * {@link Rest5Client}.
* *
* @author Brian Clozel * @author Brian Clozel
* @author Vedran Pavic * @author Vedran Pavic

5
module/spring-boot-freemarker/src/main/java/org/springframework/boot/freemarker/autoconfigure/FreeMarkerVariablesCustomizer.java

@ -24,8 +24,9 @@ import org.springframework.ui.freemarker.FreeMarkerConfigurationFactory;
/** /**
* Callback interface that can be implemented by beans wishing to customize the FreeMarker * Callback interface that can be implemented by beans wishing to customize the FreeMarker
* variables used as {@link Configuration#getSharedVariableNames() shared variables} * {@link Configuration#getSharedVariableNames() shared variables} to fine-tune their
* before it is used by an auto-configured {@link FreeMarkerConfigurationFactory}. * auto-configuration before they are used by an auto-configured
* {@link FreeMarkerConfigurationFactory}.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

2
module/spring-boot-graphql/src/main/java/org/springframework/boot/graphql/autoconfigure/GraphQlSourceBuilderCustomizer.java

@ -21,7 +21,7 @@ import org.springframework.graphql.execution.GraphQlSource;
/** /**
* Callback interface that can be implemented by beans wishing to customize properties of * Callback interface that can be implemented by beans wishing to customize properties of
* {@link org.springframework.graphql.execution.GraphQlSource.SchemaResourceBuilder * {@link org.springframework.graphql.execution.GraphQlSource.SchemaResourceBuilder
* Builder} whilst retaining default auto-configuration. * Builder} to fine-tune its auto-configuration.
* *
* @author Rossen Stoyanchev * @author Rossen Stoyanchev
* @since 4.0.0 * @since 4.0.0

5
module/spring-boot-gson/src/main/java/org/springframework/boot/gson/autoconfigure/GsonBuilderCustomizer.java

@ -20,8 +20,9 @@ import com.google.gson.Gson;
import com.google.gson.GsonBuilder; import com.google.gson.GsonBuilder;
/** /**
* Callback interface that can be implemented by beans wishing to further customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link Gson} through {@link GsonBuilder} retaining its default auto-configuration. * {@link GsonBuilder} to fine-tune its auto-configuration before it creates a
* {@link Gson} instance.
* *
* @author Ivan Golovko * @author Ivan Golovko
* @since 4.0.0 * @since 4.0.0

3
module/spring-boot-hibernate/src/main/java/org/springframework/boot/hibernate/autoconfigure/HibernatePropertiesCustomizer.java

@ -20,7 +20,8 @@ import java.util.Map;
/** /**
* Callback interface that can be implemented by beans wishing to customize the Hibernate * Callback interface that can be implemented by beans wishing to customize the Hibernate
* properties before it is used by an auto-configured {@code EntityManagerFactory}. * properties to customize their auto-configuration prior to use by the auto-configured
* {@code EntityManagerFactory}.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

2
module/spring-boot-integration/src/main/java/org/springframework/boot/integration/autoconfigure/PollerMetadataCustomizer.java

@ -20,7 +20,7 @@ import org.springframework.integration.scheduling.PollerMetadata;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link PollerMetadata} whilst retaining default auto-configuration. * {@link PollerMetadata} to fine-tune its auto-configuration.
* *
* @author Yanming Zhou * @author Yanming Zhou
* @since 4.0.0 * @since 4.0.0

2
module/spring-boot-jackson/src/main/java/org/springframework/boot/jackson/autoconfigure/Jackson2ObjectMapperBuilderCustomizer.java

@ -22,7 +22,7 @@ import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
/** /**
* Callback interface that can be implemented by beans wishing to further customize the * Callback interface that can be implemented by beans wishing to further customize the
* {@link ObjectMapper} through {@link Jackson2ObjectMapperBuilder} retaining its default * {@link ObjectMapper} through {@link Jackson2ObjectMapperBuilder} to fine-tune its
* auto-configuration. * auto-configuration.
* *
* @author Grzegorz Poznachowski * @author Grzegorz Poznachowski

2
module/spring-boot-jooq/src/main/java/org/springframework/boot/jooq/autoconfigure/DefaultConfigurationCustomizer.java

@ -20,7 +20,7 @@ import org.jooq.impl.DefaultConfiguration;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link DefaultConfiguration} whilst retaining default auto-configuration. * {@link DefaultConfiguration} to fine-tune its auto-configuration.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

4
module/spring-boot-jpa/src/main/java/org/springframework/boot/jpa/autoconfigure/EntityManagerFactoryBuilderCustomizer.java

@ -19,8 +19,8 @@ package org.springframework.boot.jpa.autoconfigure;
import org.springframework.boot.jpa.EntityManagerFactoryBuilder; import org.springframework.boot.jpa.EntityManagerFactoryBuilder;
/** /**
* Callback interface that can be used to customize the auto-configured * Callback interface that can be used to customize the
* {@link EntityManagerFactoryBuilder}. * {@link EntityManagerFactoryBuilder} to fine-tune its auto-configuration.
* *
* @author Andy Wilkinson * @author Andy Wilkinson
* @since 4.0.0 * @since 4.0.0

2
module/spring-boot-micrometer-tracing/src/main/java/org/springframework/boot/micrometer/tracing/autoconfigure/otlp/OtlpGrpcSpanExporterBuilderCustomizer.java

@ -20,7 +20,7 @@ import io.opentelemetry.exporter.otlp.trace.OtlpGrpcSpanExporterBuilder;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link OtlpGrpcSpanExporterBuilder} whilst retaining default auto-configuration. * {@link OtlpGrpcSpanExporterBuilder} to fine-tune its auto-configuration.
* *
* @author Dmytro Nosan * @author Dmytro Nosan
* @since 4.0.0 * @since 4.0.0

2
module/spring-boot-micrometer-tracing/src/main/java/org/springframework/boot/micrometer/tracing/autoconfigure/otlp/OtlpHttpSpanExporterBuilderCustomizer.java

@ -20,7 +20,7 @@ import io.opentelemetry.exporter.otlp.http.trace.OtlpHttpSpanExporterBuilder;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link OtlpHttpSpanExporterBuilder} whilst retaining default auto-configuration. * {@link OtlpHttpSpanExporterBuilder} to fine-tune its auto-configuration.
* *
* @author Dmytro Nosan * @author Dmytro Nosan
* @since 4.0.0 * @since 4.0.0

4
module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure/MongoClientSettingsBuilderCustomizer.java

@ -20,8 +20,8 @@ import com.mongodb.MongoClientSettings.Builder;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link com.mongodb.MongoClientSettings} through a {@link Builder * {@link Builder MongoClientSettings.Builder} to fine-tune its auto-configuration. before
* MongoClientSettings.Builder} whilst retaining default auto-configuration. * it creates a {@link com.mongodb.MongoClientSettings}.
* *
* @author Mark Paluch * @author Mark Paluch
* @since 4.0.0 * @since 4.0.0

6
module/spring-boot-neo4j/src/main/java/org/springframework/boot/neo4j/autoconfigure/ConfigBuilderCustomizer.java

@ -20,9 +20,9 @@ import org.neo4j.driver.Config;
import org.neo4j.driver.Config.ConfigBuilder; import org.neo4j.driver.Config.ConfigBuilder;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the a
* {@link Config} through a {@link ConfigBuilder} whilst retaining default * {@link ConfigBuilder} to fine-tune its auto-configuration before it creates a
* auto-configuration. * {@link Config} instance.
* *
* @author Stephane Nicoll * @author Stephane Nicoll
* @since 4.0.0 * @since 4.0.0

3
module/spring-boot-pulsar/src/main/java/org/springframework/boot/pulsar/autoconfigure/PulsarContainerFactoryCustomizer.java

@ -20,8 +20,7 @@ import org.springframework.pulsar.config.PulsarContainerFactory;
/** /**
* Callback interface that can be implemented by beans wishing to customize a * Callback interface that can be implemented by beans wishing to customize a
* {@link PulsarContainerFactory} before it is fully initialized, in particular to tune * {@link PulsarContainerFactory} to fine-tune its auto-configuration.
* its configuration.
* *
* @param <T> the type of the {@link PulsarContainerFactory} * @param <T> the type of the {@link PulsarContainerFactory}
* @author Chris Bono * @author Chris Bono

3
module/spring-boot-quartz/src/main/java/org/springframework/boot/quartz/autoconfigure/SchedulerFactoryBeanCustomizer.java

@ -22,8 +22,7 @@ import org.springframework.scheduling.quartz.SchedulerFactoryBean;
/** /**
* Callback interface that can be implemented by beans wishing to customize the Quartz * Callback interface that can be implemented by beans wishing to customize the Quartz
* {@link SchedulerFactoryBean} before it is fully initialized, in particular to tune its * {@link SchedulerFactoryBean} to fine-tune its auto-configuration.
* configuration.
* <p> * <p>
* For customization of the {@link DataSource} used by Quartz, use of * For customization of the {@link DataSource} used by Quartz, use of
* {@link QuartzDataSource @QuartzDataSource} is preferred. It will ensure consistent * {@link QuartzDataSource @QuartzDataSource} is preferred. It will ensure consistent

4
module/spring-boot-r2dbc/src/main/java/org/springframework/boot/r2dbc/autoconfigure/ConnectionFactoryOptionsBuilderCustomizer.java

@ -21,8 +21,8 @@ import io.r2dbc.spi.ConnectionFactoryOptions.Builder;
/** /**
* Callback interface that can be implemented by beans wishing to customize the * Callback interface that can be implemented by beans wishing to customize the
* {@link ConnectionFactoryOptions} through a {@link Builder} whilst retaining default * {@link Builder} to fine-tune its auto-configuration before it creates a
* auto-configuration. * {@link ConnectionFactoryOptions}.
* *
* @author Mark Paluch * @author Mark Paluch
* @since 4.0.0 * @since 4.0.0

5
module/spring-boot-tx/src/main/java/org/springframework/boot/transaction/autoconfigure/TransactionManagerCustomizer.java

@ -19,9 +19,8 @@ package org.springframework.boot.transaction.autoconfigure;
import org.springframework.transaction.TransactionManager; import org.springframework.transaction.TransactionManager;
/** /**
* Callback interface that can be implemented by beans wishing to customize * Callback interface that can be implemented by beans wishing to customize a
* {@link TransactionManager TransactionManagers} while retaining default * {@link TransactionManager} to fine-tune its auto-configuration.
* auto-configuration.
* *
* @param <T> the transaction manager type * @param <T> the transaction manager type
* @author Andy Wilkinson * @author Andy Wilkinson

6
module/spring-boot-web-server-test/src/main/java/org/springframework/boot/web/server/test/client/reactive/WebTestClientBuilderCustomizer.java

@ -16,12 +16,12 @@
package org.springframework.boot.web.server.test.client.reactive; package org.springframework.boot.web.server.test.client.reactive;
import org.springframework.test.web.reactive.server.WebTestClient;
import org.springframework.test.web.reactive.server.WebTestClient.Builder; import org.springframework.test.web.reactive.server.WebTestClient.Builder;
/** /**
* A customizer for a {@link Builder}. Any {@code WebTestClientBuilderCustomizer} beans * A customizer that can be implemented by beans wishing to customize the {@link Builder}
* found in the application context will be {@link #customize called} to customize the * to fine-tine its auto-configuration before a {@link WebTestClient} is created.
* auto-configured {@link Builder}.
* *
* @author Andy Wilkinson * @author Andy Wilkinson
* @since 4.0.0 * @since 4.0.0

Loading…
Cancel
Save