Commit 51bbe5e3 authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Polish

Closes gh-5508
parent a2d161ca
...@@ -68,7 +68,7 @@ public final class DefaultJmsListenerContainerFactoryConfigurer { ...@@ -68,7 +68,7 @@ public final class DefaultJmsListenerContainerFactoryConfigurer {
} }
/** /**
* Set the {@link JmsProperties to use}. * Set the {@link JmsProperties} to use.
* @param jmsProperties the {@link JmsProperties} * @param jmsProperties the {@link JmsProperties}
*/ */
void setJmsProperties(JmsProperties jmsProperties) { void setJmsProperties(JmsProperties jmsProperties) {
......
...@@ -3318,7 +3318,7 @@ dependencies in a convenient way. ...@@ -3318,7 +3318,7 @@ dependencies in a convenient way.
[[boot-features-connecting-to-couchbase]] [[boot-features-connecting-to-couchbase]]
==== Connecting to Couchbase ==== Connecting to Couchbase
You can very easily get a a `Bucket` and `Cluster` by adding the couchbase SDK and some You can very easily get a `Bucket` and `Cluster` by adding the Couchbase SDK and some
configuration. The `spring.couchbase.*` properties can be used to customize the configuration. The `spring.couchbase.*` properties can be used to customize the
connection. Generally you will provide the bootstrap hosts, bucket name and password: connection. Generally you will provide the bootstrap hosts, bucket name and password:
...@@ -3905,7 +3905,7 @@ For instance, the following exposes another factory that uses a specific `Messag ...@@ -3905,7 +3905,7 @@ For instance, the following exposes another factory that uses a specific `Messag
} }
---- ----
That you can use in any `@JmsListener`-annotated method as follows: Then you can use in any `@JmsListener`-annotated method as follows:
[source,java,indent=0] [source,java,indent=0]
---- ----
...@@ -4043,7 +4043,7 @@ For instance, the following exposes another factory that uses a specific `Messag ...@@ -4043,7 +4043,7 @@ For instance, the following exposes another factory that uses a specific `Messag
} }
---- ----
That you can use in any `@RabbitListener`-annotated method as follows: Then you can use in any `@RabbitListener`-annotated method as follows:
[source,java,indent=0] [source,java,indent=0]
---- ----
......
...@@ -38,7 +38,7 @@ import org.springframework.test.context.ContextConfiguration; ...@@ -38,7 +38,7 @@ import org.springframework.test.context.ContextConfiguration;
* {@link SpringApplicationConfiguration @SpringApplicationConfiguration} or * {@link SpringApplicationConfiguration @SpringApplicationConfiguration} or
* {@link ContextConfiguration @ContextConfiguration} if custom configuration is required. * {@link ContextConfiguration @ContextConfiguration} if custom configuration is required.
* <p> * <p>
* A mock servlet environment will used when this annotation is used to a test web * A mock servlet environment will be used when this annotation is used to a test web
* application. If you want to start a real embedded servlet container in the same way as * application. If you want to start a real embedded servlet container in the same way as
* a production application (listening on normal ports) the * a production application (listening on normal ports) the
* {@link org.springframework.boot.test.context.web.WebIntegrationTest @WebIntegrationTest} * {@link org.springframework.boot.test.context.web.WebIntegrationTest @WebIntegrationTest}
......
...@@ -40,7 +40,7 @@ import org.springframework.test.web.servlet.MockMvc; ...@@ -40,7 +40,7 @@ import org.springframework.test.web.servlet.MockMvc;
* Test class annotation signifying that the tests are "web integration tests" for a * Test class annotation signifying that the tests are "web integration tests" for a
* {@link org.springframework.boot.SpringApplication Spring Boot Application} and * {@link org.springframework.boot.SpringApplication Spring Boot Application} and
* therefore require full startup in the same way as a production application (listening * therefore require full startup in the same way as a production application (listening
* on normal ports. By default will load nested {@code @Configuration} classes, or * on normal ports). By default will load nested {@code @Configuration} classes, or
* fallback an {@link SpringApplicationConfiguration @SpringApplicationConfiguration} * fallback an {@link SpringApplicationConfiguration @SpringApplicationConfiguration}
* search. Unless otherwise configured, a {@link SpringApplicationContextLoader} will be * search. Unless otherwise configured, a {@link SpringApplicationContextLoader} will be
* used to load the {@link ApplicationContext}. Use * used to load the {@link ApplicationContext}. Use
......
...@@ -28,7 +28,7 @@ import org.springframework.boot.diagnostics.FailureAnalysis; ...@@ -28,7 +28,7 @@ import org.springframework.boot.diagnostics.FailureAnalysis;
import org.springframework.util.StringUtils; import org.springframework.util.StringUtils;
/** /**
* An {@link AbstractFailureAnalyzer} the performs analysis of failures caused by a * An {@link AbstractFailureAnalyzer} that performs analysis of failures caused by a
* {@link BeanCurrentlyInCreationException}. * {@link BeanCurrentlyInCreationException}.
* *
* @author Andy Wilkinson * @author Andy Wilkinson
......
...@@ -31,7 +31,7 @@ import org.springframework.util.Assert; ...@@ -31,7 +31,7 @@ import org.springframework.util.Assert;
import org.springframework.util.StringUtils; import org.springframework.util.StringUtils;
/** /**
* An {@link AbstractFailureAnalyzer} the performs analysis of failures caused by a * An {@link AbstractFailureAnalyzer} that performs analysis of failures caused by a
* {@link NoUniqueBeanDefinitionException}. * {@link NoUniqueBeanDefinitionException}.
* *
* @author Andy Wilkinson * @author Andy Wilkinson
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment