commit
d66ff0e42b
|
|
@ -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}
|
||||
*/
|
||||
void setJmsProperties(JmsProperties jmsProperties) {
|
||||
|
|
|
|||
|
|
@ -3318,7 +3318,7 @@ dependencies in a convenient way.
|
|||
|
||||
[[boot-features-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
|
||||
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
|
|||
}
|
||||
----
|
||||
|
||||
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]
|
||||
----
|
||||
|
|
@ -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]
|
||||
----
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ import org.springframework.test.context.ContextConfiguration;
|
|||
* {@link SpringApplicationConfiguration @SpringApplicationConfiguration} or
|
||||
* {@link ContextConfiguration @ContextConfiguration} if custom configuration is required.
|
||||
* <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
|
||||
* a production application (listening on normal ports) the
|
||||
* {@link org.springframework.boot.test.context.web.WebIntegrationTest @WebIntegrationTest}
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ import org.springframework.test.web.servlet.MockMvc;
|
|||
* Test class annotation signifying that the tests are "web integration tests" for a
|
||||
* {@link org.springframework.boot.SpringApplication Spring Boot Application} and
|
||||
* 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}
|
||||
* search. Unless otherwise configured, a {@link SpringApplicationContextLoader} will be
|
||||
* used to load the {@link ApplicationContext}. Use
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ import org.springframework.boot.diagnostics.FailureAnalysis;
|
|||
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}.
|
||||
*
|
||||
* @author Andy Wilkinson
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ import org.springframework.util.Assert;
|
|||
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}.
|
||||
*
|
||||
* @author Andy Wilkinson
|
||||
|
|
|
|||
Loading…
Reference in New Issue