File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
spring-boot-samples/spring-boot-sample-cache Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,10 @@ the underlying `HazelcastInstance`.
79
79
80
80
81
81
=== Infinispan
82
- Simply add the `org.infinispan:infinispan-spring4` dependency to enable support for
83
- Infinispan. There is no default location that Infinispan uses to look for a config
84
- file so if you don't specify anything it will bootstrap on a hardcoded default. You
85
- can set the `spring.cache.infinispan.config` property to use the provided
82
+ Add the `org.infinispan:infinispan-spring4` and `org.infinispan:infinispan-spring4-embedded`
83
+ dependencies to enable support for Infinispan. There is no default location that Infinispan
84
+ uses to look for a config file so if you don't specify anything it will bootstrap on a hardcoded
85
+ default. You can set the `spring.cache.infinispan.config` property to use the provided
86
86
`infinispan.xml` configuration instead.
87
87
88
88
Original file line number Diff line number Diff line change 69
69
<groupId>org.infinispan</groupId>
70
70
<artifactId>infinispan-spring4</artifactId>
71
71
</dependency>
72
+ <dependency>
73
+ <groupId>org.infinispan</groupId>
74
+ <artifactId>infinispan-spring4-embedded</artifactId>
75
+ </dependency>
72
76
<dependency>
73
77
<groupId>org.infinispan</groupId>
74
78
<artifactId>infinispan-jcache</artifactId>
You can’t perform that action at this time.
0 commit comments