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
a994b11a
Commit
a994b11a
authored
Sep 19, 2016
by
Johnny Lim
Committed by
Phillip Webb
Sep 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
parent
e239e64c
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 @
a994b11a
...
@@ -3788,7 +3788,7 @@ providers (in this order):
...
@@ -3788,7 +3788,7 @@ providers (in this order):
* <<boot-features-caching-provider-generic,Generic>>
* <<boot-features-caching-provider-generic,Generic>>
* <<boot-features-caching-provider-jcache,JCache (JSR-107)>> (EhCache 3, Hazelcast,
* <<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-ehcache2,EhCache 2.x>>
* <<boot-features-caching-provider-hazelcast,Hazelcast>>
* <<boot-features-caching-provider-hazelcast,Hazelcast>>
* <<boot-features-caching-provider-infinispan,Infinispan>>
* <<boot-features-caching-provider-infinispan,Infinispan>>
...
...
spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/orm/jpa/AutoConfigureTestDatabaseWithNoDatabaseIntegrationTests.java
View file @
a994b11a
...
@@ -41,7 +41,7 @@ public class AutoConfigureTestDatabaseWithNoDatabaseIntegrationTests {
...
@@ -41,7 +41,7 @@ public class AutoConfigureTestDatabaseWithNoDatabaseIntegrationTests {
private
ApplicationContext
context
;
private
ApplicationContext
context
;
@Test
@Test
public
void
testContextLoad
e
s
()
throws
Exception
{
public
void
testContextLoads
()
throws
Exception
{
// gh-6897
// gh-6897
assertThat
(
this
.
context
).
isNotNull
();
assertThat
(
this
.
context
).
isNotNull
();
assertThat
(
this
.
context
.
getBeanNamesForType
(
DataSource
.
class
)).
isNotEmpty
();
assertThat
(
this
.
context
.
getBeanNamesForType
(
DataSource
.
class
)).
isNotEmpty
();
...
...
spring-boot-test/src/test/java/org/springframework/boot/test/context/bootstrap/SpringBootTestContextBootstrapperTests.java
View file @
a994b11a
...
@@ -61,10 +61,10 @@ public class SpringBootTestContextBootstrapperTests {
...
@@ -61,10 +61,10 @@ public class SpringBootTestContextBootstrapperTests {
BootstrapContext
bootstrapContext
=
mock
(
BootstrapContext
.
class
);
BootstrapContext
bootstrapContext
=
mock
(
BootstrapContext
.
class
);
bootstrapper
.
setBootstrapContext
(
bootstrapContext
);
bootstrapper
.
setBootstrapContext
(
bootstrapContext
);
given
((
Class
)
bootstrapContext
.
getTestClass
()).
willReturn
(
testClass
);
given
((
Class
)
bootstrapContext
.
getTestClass
()).
willReturn
(
testClass
);
CacheAwareContextLoaderDelegate
contextLoaderDele
ag
te
=
mock
(
CacheAwareContextLoaderDelegate
contextLoaderDele
ga
te
=
mock
(
CacheAwareContextLoaderDelegate
.
class
);
CacheAwareContextLoaderDelegate
.
class
);
given
(
bootstrapContext
.
getCacheAwareContextLoaderDelegate
())
given
(
bootstrapContext
.
getCacheAwareContextLoaderDelegate
())
.
willReturn
(
contextLoaderDele
ag
te
);
.
willReturn
(
contextLoaderDele
ga
te
);
bootstrapper
.
buildTestContext
();
bootstrapper
.
buildTestContext
();
}
}
...
...
spring-boot-tools/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/AbstractRunMojo.java
View file @
a994b11a
...
@@ -139,7 +139,7 @@ public abstract class AbstractRunMojo extends AbstractDependencyFilterMojo {
...
@@ -139,7 +139,7 @@ public abstract class AbstractRunMojo extends AbstractDependencyFilterMojo {
private
File
classesDirectory
;
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
* automatically enabled if an agent or jvmArguments are specified, or if devtools is
* present.
* present.
* @since 1.2
* @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