diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitAutoConfiguration.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitAutoConfiguration.java index a2a6f2f8a01..41207948017 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitAutoConfiguration.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitAutoConfiguration.java @@ -48,7 +48,7 @@ import org.springframework.context.annotation.Import; *
* This configuration class is active only when the RabbitMQ and Spring AMQP client * libraries are on the classpath. - *
+ *
* Registers the following beans: *
* Registers a {@link MongoTemplate} and {@link GridFsTemplate} beans if no other beans of * the same type are configured. - *
+ *
* Honors the {@literal spring.data.mongodb.database} property if set, otherwise connects * to the {@literal test} database. * diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/mongo/MongoReactiveDataAutoConfiguration.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/mongo/MongoReactiveDataAutoConfiguration.java index 1dd45e93c02..a9ec8d7f5f7 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/mongo/MongoReactiveDataAutoConfiguration.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/mongo/MongoReactiveDataAutoConfiguration.java @@ -49,7 +49,7 @@ import org.springframework.data.mongodb.gridfs.ReactiveGridFsTemplate; *
* Registers a {@link ReactiveMongoTemplate} bean if no other bean of the same type is * configured. - *
+ *
* Honors the {@literal spring.data.mongodb.database} property if set, otherwise connects
* to the {@literal test} database.
*
diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc
index 474f49cc5e6..eec062e3815 100644
--- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc
+++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc
@@ -1301,7 +1301,7 @@ By default, Spring Boot picks up the native configuration from its default locat
=== Configure Logback for Logging
If you need to apply customizations to logback beyond those that can be achieved with `application.properties`, you'll need to add a standard logback configuration file.
You can add a `logback.xml` file to the root of your classpath for logback to find.
-You can also use `logback-spring.xml` if you want to use the <
+ *
* Primarily intended to allow downstream projects to deal with edge-cases in which it is
* not easy to support lazy-loading (such as in DSLs that dynamically create additional
* beans). Adding an instance of this filter to the application context can be used for
* these edge cases.
- *
+ *
* A typical example would be something like this:
- *
+ *
*
* NOTE: Beans of this type will be instantiated very early in the spring application
- * lifecycle so should generally be declared static and not have any dependencies.
+ * lifecycle so they should generally be declared static and not have any dependencies.
*
* @author Tyler Van Gorder
* @author Philip Webb
@@ -49,11 +49,11 @@ public interface LazyInitializationExcludeFilter {
/**
* Returns {@code true} if the specified bean definition should be excluded from
- * having {@code lazy-int} automatically set.
+ * having {@code lazy-init} automatically set.
* @param beanName the bean name
* @param beanDefinition the bean definition
* @param beanType the bean type
- * @return {@code true} if {@code lazy-int} should not be automatically set
+ * @return {@code true} if {@code lazy-init} should not be automatically set
*/
boolean isExcluded(String beanName, BeanDefinition beanDefinition, Class> beanType);
diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/source/PropertyMapper.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/source/PropertyMapper.java
index bcd585fa18d..9032d00584f 100644
--- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/source/PropertyMapper.java
+++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/source/PropertyMapper.java
@@ -22,7 +22,7 @@ import org.springframework.core.env.PropertySource;
/**
* Strategy used to provide a mapping between a {@link PropertySource} and a
* {@link ConfigurationPropertySource}.
- *
+ *
* Mappings should be provided for both {@link ConfigurationPropertyName
* ConfigurationPropertyName} types and {@code String} based names. This allows the
* {@link SpringConfigurationPropertySource} to first attempt any direct mappings (i.e.
*
* @Bean
* public static LazyInitializationExcludeFilter integrationLazyInitializationExcludeFilter() {
@@ -38,7 +38,7 @@ import org.springframework.beans.factory.support.AbstractBeanDefinition;
* }