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
ad5674cb
Commit
ad5674cb
authored
Apr 26, 2016
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.3.x'
parents
1ef33274
ac8e87d7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
ResourceProperties.java
...gframework/boot/autoconfigure/web/ResourceProperties.java
+3
-3
WebMvcAutoConfigurationTests.java
.../boot/autoconfigure/web/WebMvcAutoConfigurationTests.java
+8
-1
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ResourceProperties.java
View file @
ad5674cb
...
@@ -33,6 +33,7 @@ import org.springframework.core.io.ResourceLoader;
...
@@ -33,6 +33,7 @@ import org.springframework.core.io.ResourceLoader;
* @author Phillip Webb
* @author Phillip Webb
* @author Brian Clozel
* @author Brian Clozel
* @author Dave Syer
* @author Dave Syer
* @author Venil Noronha
* @since 1.1.0
* @since 1.1.0
*/
*/
@ConfigurationProperties
(
prefix
=
"spring.resources"
,
ignoreUnknownFields
=
false
)
@ConfigurationProperties
(
prefix
=
"spring.resources"
,
ignoreUnknownFields
=
false
)
...
@@ -117,10 +118,9 @@ public class ResourceProperties implements ResourceLoaderAware {
...
@@ -117,10 +118,9 @@ public class ResourceProperties implements ResourceLoaderAware {
}
}
List
<
Resource
>
getFaviconLocations
()
{
List
<
Resource
>
getFaviconLocations
()
{
List
<
Resource
>
locations
=
new
ArrayList
<
Resource
>(
List
<
Resource
>
locations
=
new
ArrayList
<
Resource
>(
this
.
staticLocations
.
length
+
1
);
CLASSPATH_RESOURCE_LOCATIONS
.
length
+
1
);
if
(
this
.
resourceLoader
!=
null
)
{
if
(
this
.
resourceLoader
!=
null
)
{
for
(
String
location
:
CLASSPATH_RESOURCE_LOCATIONS
)
{
for
(
String
location
:
this
.
staticLocations
)
{
locations
.
add
(
this
.
resourceLoader
.
getResource
(
location
));
locations
.
add
(
this
.
resourceLoader
.
getResource
(
location
));
}
}
}
}
...
...
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/WebMvcAutoConfigurationTests.java
View file @
ad5674cb
...
@@ -398,7 +398,14 @@ public class WebMvcAutoConfigurationTests {
...
@@ -398,7 +398,14 @@ public class WebMvcAutoConfigurationTests {
assertThat
(
this
.
context
.
getBeansOfType
(
SimpleUrlHandlerMapping
.
class
)
assertThat
(
this
.
context
.
getBeansOfType
(
SimpleUrlHandlerMapping
.
class
)
.
get
(
"faviconHandlerMapping"
)).
isNotNull
();
.
get
(
"faviconHandlerMapping"
)).
isNotNull
();
Map
<
String
,
List
<
Resource
>>
mappingLocations
=
getFaviconMappingLocations
();
Map
<
String
,
List
<
Resource
>>
mappingLocations
=
getFaviconMappingLocations
();
assertThat
(
mappingLocations
.
get
(
"/**/favicon.ico"
)).
hasSize
(
5
);
assertThat
(
mappingLocations
.
get
(
"/**/favicon.ico"
)).
hasSize
(
6
);
}
@Test
public
void
faviconMappingUsesStaticLocations
()
throws
IllegalAccessException
{
load
(
"spring.resources.static-locations=classpath:/static"
);
Map
<
String
,
List
<
Resource
>>
mappingLocations
=
getFaviconMappingLocations
();
assertThat
(
mappingLocations
.
get
(
"/**/favicon.ico"
)).
hasSize
(
2
);
}
}
@Test
@Test
...
...
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