Skip to content

Commit cf47b7c

Browse files
committed
Add Spring Boot Data config import info to quickstart.
1 parent 084e666 commit cf47b7c

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

README.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@ dependencyManagement {
132132
}
133133
----
134134

135+
WARNING: Depending on the version you are using, you might need to adjust Apache Zookeeper version used in your project.
136+
You can read more about it in the <<spring-cloud-zookeeper-install,Install Zookeeper section>>.
137+
135138
Now you can create a standard Spring Boot application, such as the following HTTP server:
136139

137140
----
@@ -254,6 +257,9 @@ dependencyManagement {
254257
}
255258
----
256259

260+
WARNING: Depending on the version you are using, you might need to adjust Apache Zookeeper version used in your project.
261+
You can read more about it in the <<spring-cloud-zookeeper-install,Install Zookeeper section>>.
262+
257263
Now you can create a standard Spring Boot application, such as the following HTTP server:
258264

259265
----
@@ -275,6 +281,9 @@ public class Application {
275281

276282
The application retrieves configuration data from Zookeeper.
277283

284+
WARNING: If you use Spring Cloud Zookeeper Config, you need to set the `spring.config.import` property in order to bind to Zookeeper.
285+
You can read more about it in the <<config-data-import,Spring Boot Data Config section>>.
286+
278287
== Zookeeper overview
279288

280289
ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services.

docs/src/main/asciidoc/quickstart.adoc

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ dependencyManagement {
7979
}
8080
----
8181

82+
WARNING: Depending on the version you are using, you might need to adjust Apache Zookeeper version used in your project.
83+
You can read more about it in the <<spring-cloud-zookeeper-install,Install Zookeeper section>>.
84+
8285
Now you can create a standard Spring Boot application, such as the following HTTP server:
8386

8487
----
@@ -201,6 +204,9 @@ dependencyManagement {
201204
}
202205
----
203206

207+
WARNING: Depending on the version you are using, you might need to adjust Apache Zookeeper version used in your project.
208+
You can read more about it in the <<spring-cloud-zookeeper-install,Install Zookeeper section>>.
209+
204210
Now you can create a standard Spring Boot application, such as the following HTTP server:
205211

206212
----
@@ -220,4 +226,7 @@ public class Application {
220226
}
221227
----
222228

223-
The application retrieves configuration data from Zookeeper.
229+
The application retrieves configuration data from Zookeeper.
230+
231+
WARNING: If you use Spring Cloud Zookeeper Config, you need to set the `spring.config.import` property in order to bind to Zookeeper.
232+
You can read more about it in the <<config-data-import,Spring Boot Data Config section>>.

0 commit comments

Comments
 (0)