Commit b8df4d45 authored by Phillip Webb's avatar Phillip Webb

Merge pull request #5806 from eddumelendez/gh-5800

* pr/5806:
  Fix spring-boot-sample-cache Infinispan example
parents 628cbcda 81bf3867
...@@ -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.
......
...@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment