From 8c21e16cf114b4a00550dc52ae6c59f3f57eb78e Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 14 Apr 2017 13:57:47 +0200 Subject: [PATCH] Add reference to Infinispan starter Closes gh-8592 --- .../src/main/asciidoc/spring-boot-features.adoc | 7 +++++++ spring-boot-samples/spring-boot-sample-cache/README.adoc | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 6ccd97f1287..d2aaa5a54ee 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -4192,6 +4192,13 @@ Infinispan has no default configuration file location so it must be specified ex Caches can be created on startup via the `spring.cache.cache-names` property. If a custom `ConfigurationBuilder` bean is defined, it is used to customize them. +[NOTE] +==== +The support of Infinispan in Spring Boot is restricted to the embedded mode and is quite +basic. If you want more options you should use the official Infinispan Spring Boot starter +instead, check +https://github.com/infinispan/infinispan-spring-boot[the documentation] for more details. +==== [[boot-features-caching-provider-couchbase]] diff --git a/spring-boot-samples/spring-boot-sample-cache/README.adoc b/spring-boot-samples/spring-boot-sample-cache/README.adoc index 767a26f6502..25284b09023 100644 --- a/spring-boot-samples/spring-boot-sample-cache/README.adoc +++ b/spring-boot-samples/spring-boot-sample-cache/README.adoc @@ -92,7 +92,9 @@ can set the `spring.cache.infinispan.config` property to use the provided TIP: Run sample cache application using Infinispan with `$mvn spring-boot:run -Pinfinispan`. - +NOTE: If you want to use the client/server mode or if you need more options, Infinispan +provides an official Spring Boot starter, check +https://github.com/infinispan/infinispan-spring-boot[the documentation] for more details. === Couchbase Add the `java-client` and `couchbase-spring-cache` dependencies and make sure that