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
b8df4d45
Commit
b8df4d45
authored
Apr 27, 2016
by
Phillip Webb
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5806 from eddumelendez/gh-5800
* pr/5806: Fix spring-boot-sample-cache Infinispan example
parents
628cbcda
81bf3867
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
README.adoc
spring-boot-samples/spring-boot-sample-cache/README.adoc
+4
-4
pom.xml
spring-boot-samples/spring-boot-sample-cache/pom.xml
+4
-0
No files found.
spring-boot-samples/spring-boot-sample-cache/README.adoc
View file @
b8df4d45
...
@@ -79,10 +79,10 @@ the underlying `HazelcastInstance`.
...
@@ -79,10 +79,10 @@ the underlying `HazelcastInstance`.
=== Infinispan
=== Infinispan
Simply add the `org.infinispan:infinispan-spring4` dependency to enable support for
Add the `org.infinispan:infinispan-spring4` and `org.infinispan:infinispan-spring4-embedded`
Infinispan. There is no default location that Infinispan uses to look for a config
dependencies to enable support for Infinispan. There is no default location that Infinispan
file so if you don't specify anything it will bootstrap on a hardcoded default. You
uses to look for a config file so if you don't specify anything it will bootstrap on a hardcoded
can set the `spring.cache.infinispan.config` property to use the provided
default. You
can set the `spring.cache.infinispan.config` property to use the provided
`infinispan.xml` configuration instead.
`infinispan.xml` configuration instead.
...
...
spring-boot-samples/spring-boot-sample-cache/pom.xml
View file @
b8df4d45
...
@@ -69,6 +69,10 @@
...
@@ -69,6 +69,10 @@
<groupId>org.infinispan</groupId>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-spring4</artifactId>
<artifactId>infinispan-spring4</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-spring4-embedded</artifactId>
</dependency>
<dependency>
<dependency>
<groupId>org.infinispan</groupId>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-jcache</artifactId>
<artifactId>infinispan-jcache</artifactId>
...
...
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