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
feee401f
Commit
feee401f
authored
Sep 19, 2016
by
Phillip Webb
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6921 from izeye/polish-20160919
* pr/6921: Polish
parents
e239e64c
a994b11a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+1
-1
AutoConfigureTestDatabaseWithNoDatabaseIntegrationTests.java
...oConfigureTestDatabaseWithNoDatabaseIntegrationTests.java
+1
-1
SpringBootTestContextBootstrapperTests.java
...ext/bootstrap/SpringBootTestContextBootstrapperTests.java
+2
-2
AbstractRunMojo.java
.../java/org/springframework/boot/maven/AbstractRunMojo.java
+1
-1
No files found.
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
feee401f
...
...
@@ -3788,7 +3788,7 @@ providers (in this order):
* <<boot-features-caching-provider-generic,Generic>>
* <<boot-features-caching-provider-jcache,JCache (JSR-107)>> (EhCache 3, Hazelcast,
Infinspan, etc)
Infin
i
span, etc)
* <<boot-features-caching-provider-ehcache2,EhCache 2.x>>
* <<boot-features-caching-provider-hazelcast,Hazelcast>>
* <<boot-features-caching-provider-infinispan,Infinispan>>
...
...
spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/AutoConfigureTestDatabaseWithNoDatabaseIntegrationTests.java
View file @
feee401f
...
...
@@ -41,7 +41,7 @@ public class AutoConfigureTestDatabaseWithNoDatabaseIntegrationTests {
private
ApplicationContext
context
;
@Test
public
void
testContextLoad
e
s
()
throws
Exception
{
public
void
testContextLoads
()
throws
Exception
{
// gh-6897
assertThat
(
this
.
context
).
isNotNull
();
assertThat
(
this
.
context
.
getBeanNamesForType
(
DataSource
.
class
)).
isNotEmpty
();
...
...
spring-boot-test/src/test/java/org/springframework/boot/test/context/bootstrap/SpringBootTestContextBootstrapperTests.java
View file @
feee401f
...
...
@@ -61,10 +61,10 @@ public class SpringBootTestContextBootstrapperTests {
BootstrapContext
bootstrapContext
=
mock
(
BootstrapContext
.
class
);
bootstrapper
.
setBootstrapContext
(
bootstrapContext
);
given
((
Class
)
bootstrapContext
.
getTestClass
()).
willReturn
(
testClass
);
CacheAwareContextLoaderDelegate
contextLoaderDele
ag
te
=
mock
(
CacheAwareContextLoaderDelegate
contextLoaderDele
ga
te
=
mock
(
CacheAwareContextLoaderDelegate
.
class
);
given
(
bootstrapContext
.
getCacheAwareContextLoaderDelegate
())
.
willReturn
(
contextLoaderDele
ag
te
);
.
willReturn
(
contextLoaderDele
ga
te
);
bootstrapper
.
buildTestContext
();
}
...
...
spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/AbstractRunMojo.java
View file @
feee401f
...
...
@@ -139,7 +139,7 @@ public abstract class AbstractRunMojo extends AbstractDependencyFilterMojo {
private
File
classesDirectory
;
/**
* Flag to indicate if the run processes should be forked. {@code fork
} is
* Flag to indicate if the run processes should be forked. {@code fork} is
* automatically enabled if an agent or jvmArguments are specified, or if devtools is
* present.
* @since 1.2
...
...
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