You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 27, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.adoc
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,8 @@ In order to get started, just add our Spring Boot Starter as dependency in your
29
29
</dependency>
30
30
----
31
31
32
+
Each one of the aforementioned dependencies transitively pulls all the necessary dependencies to allow the Spring Boot application to work seamlessly with Infinispan in the specified mode.
33
+
32
34
## Enforcing specific version
33
35
34
36
The starters use high level API provided by Infinispan. Therefore they should be compatible even within major version changes.
@@ -162,9 +164,9 @@ Please note, if `infinispan.embedded.config-xml` is used, the global configurati
162
164
163
165
### Spring Cache support
164
166
165
-
Once the starter detects `EmbeddedCacheManager` bean, it will instantiate a new `SpringEmbeddedCacheManager` which provides an implementation of
167
+
Simply adding `@EnableCaching` to the application will enable Spring Cache support.
168
+
This works because once the starter detects `EmbeddedCacheManager` bean, it will instantiate a new `SpringEmbeddedCacheManager` which provides an implementation of
The one last bit is a matter of adding `@EnableCaching` to the user application.
168
170
169
171
## Using Client/Server mode
170
172
@@ -248,7 +250,9 @@ public InfinispanRemoteCacheCustomizer customizer() {
248
250
249
251
### Spring Cache support
250
252
251
-
Once the starter detects `RemoteCacheManager` bean, it will instantiate a new `SpringRemoteCacheManager` which provides an implementation of https://docs.spring.io/spring/docs/current/spring-framework-reference/html/cache.html[Spring Cache]. The one last bit is a matter of adding `@EnableCaching` to the user application.
253
+
Simply adding `@EnableCaching` to the application will enable Spring Cache support.
254
+
This works because once the starter detects `RemoteCacheManager` bean, it will instantiate a new `SpringRemoteCacheManager` which provides an implementation of
0 commit comments