Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
51bbe5e3
Commit
51bbe5e3
authored
Mar 28, 2016
by
Johnny Lim
Committed by
Stephane Nicoll
Mar 28, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
Closes gh-5508
parent
a2d161ca
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
DefaultJmsListenerContainerFactoryConfigurer.java
...ure/jms/DefaultJmsListenerContainerFactoryConfigurer.java
+1
-1
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+3
-3
SpringApplicationTest.java
...ingframework/boot/test/context/SpringApplicationTest.java
+1
-1
WebIntegrationTest.java
...ngframework/boot/test/context/web/WebIntegrationTest.java
+1
-1
BeanCurrentlyInCreationFailureAnalyzer.java
...tics/analyzer/BeanCurrentlyInCreationFailureAnalyzer.java
+1
-1
NoUniqueBeanDefinitionExceptionFailureAnalyzer.java
...lyzer/NoUniqueBeanDefinitionExceptionFailureAnalyzer.java
+1
-1
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/DefaultJmsListenerContainerFactoryConfigurer.java
View file @
51bbe5e3
...
@@ -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
)
{
...
...
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
51bbe5e3
...
@@ -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 c
ouchbase SDK and some
You can very easily get a
`Bucket` and `Cluster` by adding the C
ouchbase 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
}
}
----
----
Th
at
you can use in any `@JmsListener`-annotated method as follows:
Th
en
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
}
}
----
----
Th
at
you can use in any `@RabbitListener`-annotated method as follows:
Th
en
you can use in any `@RabbitListener`-annotated method as follows:
[source,java,indent=0]
[source,java,indent=0]
----
----
...
...
spring-boot-test/src/main/java/org/springframework/boot/test/context/SpringApplicationTest.java
View file @
51bbe5e3
...
@@ -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}
...
...
spring-boot-test/src/main/java/org/springframework/boot/test/context/web/WebIntegrationTest.java
View file @
51bbe5e3
...
@@ -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
...
...
spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/BeanCurrentlyInCreationFailureAnalyzer.java
View file @
51bbe5e3
...
@@ -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} th
e
performs analysis of failures caused by a
* An {@link AbstractFailureAnalyzer} th
at
performs analysis of failures caused by a
* {@link BeanCurrentlyInCreationException}.
* {@link BeanCurrentlyInCreationException}.
*
*
* @author Andy Wilkinson
* @author Andy Wilkinson
...
...
spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/NoUniqueBeanDefinitionExceptionFailureAnalyzer.java
View file @
51bbe5e3
...
@@ -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} th
e
performs analysis of failures caused by a
* An {@link AbstractFailureAnalyzer} th
at
performs analysis of failures caused by a
* {@link NoUniqueBeanDefinitionException}.
* {@link NoUniqueBeanDefinitionException}.
*
*
* @author Andy Wilkinson
* @author Andy Wilkinson
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment