Przeglądaj źródła

List Spring Boot's starters

Greg Turnquist 13 lat temu
rodzic
commit
9630f56b46
2 zmienionych plików z 30 dodań i 0 usunięć
  1. 15
    0
      README.ftl.md
  2. 15
    0
      README.md

+ 15
- 0
README.ftl.md Wyświetl plik

@@ -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.

+ 15
- 0
README.md Wyświetl plik

@@ -418,6 +418,21 @@ The response shows that shutdown through REST is currently disabled by default (
418 418
 
419 419
 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.
420 420
 
421
+Spring Boot's starters
422
+----------------------
423
+You have seen some of Spring Boot's **starters**. Here is a complete list:
424
+- spring-boot-starter-actuator
425
+- spring-boot-starter-batch
426
+- spring-boot-starter-data-jpa
427
+- spring-boot-starter-integration
428
+- spring-boot-starter-jetty
429
+- spring-boot-starter-logging
430
+- spring-boot-starter-parent
431
+- spring-boot-starter-security
432
+- spring-boot-starter-tomcat
433
+- spring-boot-starter-web
434
+
435
+
421 436
 That is not all
422 437
 ---------------
423 438
 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.