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
6f2e133a
Commit
6f2e133a
authored
Feb 11, 2014
by
Jakub Kubrynski
Committed by
Dave Syer
Feb 11, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Now custom SpringApplication class can be used when extending SpringApplicationContextLoader
parent
76c56c6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
SpringApplicationContextLoader.java
...ngframework/boot/test/SpringApplicationContextLoader.java
+10
-1
No files found.
spring-boot/src/main/java/org/springframework/boot/test/SpringApplicationContextLoader.java
View file @
6f2e133a
...
@@ -58,7 +58,7 @@ public class SpringApplicationContextLoader extends AbstractContextLoader {
...
@@ -58,7 +58,7 @@ public class SpringApplicationContextLoader extends AbstractContextLoader {
public
ApplicationContext
loadContext
(
MergedContextConfiguration
mergedConfig
)
public
ApplicationContext
loadContext
(
MergedContextConfiguration
mergedConfig
)
throws
Exception
{
throws
Exception
{
SpringApplication
application
=
new
SpringApplication
();
SpringApplication
application
=
get
SpringApplication
();
application
.
setSources
(
getSources
(
mergedConfig
));
application
.
setSources
(
getSources
(
mergedConfig
));
if
(!
ObjectUtils
.
isEmpty
(
mergedConfig
.
getActiveProfiles
()))
{
if
(!
ObjectUtils
.
isEmpty
(
mergedConfig
.
getActiveProfiles
()))
{
application
.
setAdditionalProfiles
(
mergedConfig
.
getActiveProfiles
());
application
.
setAdditionalProfiles
(
mergedConfig
.
getActiveProfiles
());
...
@@ -77,6 +77,15 @@ public class SpringApplicationContextLoader extends AbstractContextLoader {
...
@@ -77,6 +77,15 @@ public class SpringApplicationContextLoader extends AbstractContextLoader {
return
application
.
run
();
return
application
.
run
();
}
}
/**
* Builds new {@link org.springframework.boot.SpringApplication} instance. You can override
* this method to add custom behaviour
* @return {@link org.springframework.boot.SpringApplication} instance
*/
protected
SpringApplication
getSpringApplication
()
{
return
new
SpringApplication
();
}
private
Set
<
Object
>
getSources
(
MergedContextConfiguration
mergedConfig
)
{
private
Set
<
Object
>
getSources
(
MergedContextConfiguration
mergedConfig
)
{
Set
<
Object
>
sources
=
new
LinkedHashSet
<
Object
>();
Set
<
Object
>
sources
=
new
LinkedHashSet
<
Object
>();
sources
.
addAll
(
Arrays
.
asList
(
mergedConfig
.
getClasses
()));
sources
.
addAll
(
Arrays
.
asList
(
mergedConfig
.
getClasses
()));
...
...
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