|
|
@@ -250,6 +250,21 @@ The response shows that shutdown through REST is currently disabled by default (
|
|
250
|
250
|
|
|
251
|
251
|
For more details about each of these REST points and how you can tune their settings with an ``application.properties` file, feel free to dig into the [Spring Boot][spring-boot] project.
|
|
252
|
252
|
|
|
|
253
|
+Spring Boot's starters
|
|
|
254
|
+----------------------
|
|
|
255
|
+You have seen some of Spring Boot's **starters**. Here is a complete list:
|
|
|
256
|
+- spring-boot-starter-actuator
|
|
|
257
|
+- spring-boot-starter-batch
|
|
|
258
|
+- spring-boot-starter-data-jpa
|
|
|
259
|
+- spring-boot-starter-integration
|
|
|
260
|
+- spring-boot-starter-jetty
|
|
|
261
|
+- spring-boot-starter-logging
|
|
|
262
|
+- spring-boot-starter-parent
|
|
|
263
|
+- spring-boot-starter-security
|
|
|
264
|
+- spring-boot-starter-tomcat
|
|
|
265
|
+- spring-boot-starter-web
|
|
|
266
|
+
|
|
|
267
|
+
|
|
253
|
268
|
That is not all
|
|
254
|
269
|
---------------
|
|
255
|
270
|
That last example showed how Spring Boot makes it easy to wire beans you may not be aware you need. And it showed how to turn on convenient management services.
|