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
ecee04a8
Commit
ecee04a8
authored
Sep 22, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.0.x'
parents
47f93793
f2259452
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
15 deletions
+9
-15
README.adoc
spring-boot-samples/spring-boot-sample-cache/README.adoc
+7
-4
pom.xml
spring-boot-samples/spring-boot-sample-cache/pom.xml
+0
-9
application.properties
...ot-sample-cache/src/main/resources/application.properties
+2
-2
No files found.
spring-boot-samples/spring-boot-sample-cache/README.adoc
View file @
ecee04a8
...
...
@@ -46,10 +46,13 @@ compliant implementation and the JSR-107 api. You first need to add
* `Hazelcast`: add `com.hazelcast:hazelcast`
* `Infinispan`: add `org.infinispan:infinispan-jcache`
TIP: Certain cache providers do not create a default cache on-the-fly if it does not
exist so you might need to update the sample to create the caches on startup or
specify the location to the provider-specific file via the
`spring.cache.jcache.config` property.
TIP: Run sample cache application using JCache and EhCache3 by uncommenting the
`spring.cache.jcache.config` property and `$mvn spring-boot:run -Pehcache`.
TIP: Refer to the documentation of the JSR-107 implementation you want to use: certain
cache providers do not create a default cache on-the-fly if it does not exist so you might
need to update the sample to create the caches on startup or specify the location to the
provider-specific file via the `spring.cache.jcache.config` property.
NOTE: Any other JSR-107 compliant provider is also supported but Spring Boot may not
offer a dependency management entry for it. You will have to add it with the version
...
...
spring-boot-samples/spring-boot-sample-cache/pom.xml
View file @
ecee04a8
...
...
@@ -45,15 +45,6 @@
</plugins>
</build>
<profiles>
<profile>
<id>
jcache
</id>
<dependencies>
<dependency>
<groupId>
javax.cache
</groupId>
<artifactId>
cache-api
</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>
caffeine
</id>
<dependencies>
...
...
spring-boot-samples/spring-boot-sample-cache/src/main/resources/application.properties
View file @
ecee04a8
...
...
@@ -3,13 +3,13 @@ management.endpoints.web.exposure.include=*
#
# Infinispan configuration file location.
#
spring.cache.infinispan.config
=
infinispan.xml
spring.cache.infinispan.config
=
classpath:
infinispan.xml
#
# JCache configuration (example with ehcache 3).
#
#spring.cache.jcache.config=ehcache3.xml
#spring.cache.jcache.config=
classpath:
ehcache3.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