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
d93a76cc
Commit
d93a76cc
authored
Jun 15, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3227 from izeye/cache-config
* cache-config: Fix typo in cache auto-configurations
parents
79adcc94
01122607
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
EhCacheCacheConfiguration.java
...k/boot/autoconfigure/cache/EhCacheCacheConfiguration.java
+1
-1
HazelcastCacheConfiguration.java
...boot/autoconfigure/cache/HazelcastCacheConfiguration.java
+1
-1
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/EhCacheCacheConfiguration.java
View file @
d93a76cc
...
...
@@ -71,7 +71,7 @@ class EhCacheCacheConfiguration {
static
class
ConfigAvailableCondition
extends
CacheConfigFileCondition
{
public
ConfigAvailableCondition
()
{
super
(
"EhCache"
,
"spring.c
onfig
.ehcache"
,
"classpath:/ehcache.xml"
);
super
(
"EhCache"
,
"spring.c
ache
.ehcache"
,
"classpath:/ehcache.xml"
);
}
}
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/HazelcastCacheConfiguration.java
View file @
d93a76cc
...
...
@@ -81,7 +81,7 @@ class HazelcastCacheConfiguration {
static
class
ConfigAvailableCondition
extends
CacheConfigFileCondition
{
public
ConfigAvailableCondition
()
{
super
(
"Hazelcast"
,
"spring.c
onfig
.hazelcast"
,
"file:./hazelcast.xml"
,
super
(
"Hazelcast"
,
"spring.c
ache
.hazelcast"
,
"file:./hazelcast.xml"
,
"classpath:/hazelcast.xml"
);
}
...
...
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