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
Use of the term "starter" was sometimes quoted but sometimes was not,
sometimes used proper case and sometimes lowercase. This commit
improves consistency by removing quotes and using lowercase.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/ROOT/pages/installing.adoc
+2-2
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ Ubuntu users can run `sudo apt-get install maven`.
39
39
Windows users with https://chocolatey.org/[Chocolatey] can run `choco install maven` from an elevated (administrator) prompt.
40
40
41
41
Spring Boot dependencies use the `org.springframework.boot` group id.
42
-
Typically, your Maven POM file inherits from the `spring-boot-starter-parent` project and declares dependencies to one or more xref:reference:using/build-systems.adoc#using.build-systems.starters["`Starters`"].
42
+
Typically, your Maven POM file inherits from the `spring-boot-starter-parent` project and declares dependencies to one or more xref:reference:using/build-systems.adoc#using.build-systems.starters[starters].
43
43
Spring Boot also provides an optional xref:maven-plugin:index.adoc[Maven plugin] to create executable jars.
44
44
45
45
More details on getting started with Spring Boot and Maven can be found in the xref:maven-plugin:getting-started.adoc[Getting Started section] of the Maven plugin's reference guide.
@@ -53,7 +53,7 @@ Spring Boot is compatible with Gradle 7.x (7.5 or later) and 8.x.
53
53
If you do not already have Gradle installed, you can follow the instructions at https://gradle.org.
54
54
55
55
Spring Boot dependencies can be declared by using the `org.springframework.boot` `group`.
56
-
Typically, your project declares dependencies to one or more xref:reference:using/build-systems.adoc#using.build-systems.starters["`Starters`"].
56
+
Typically, your project declares dependencies to one or more xref:reference:using/build-systems.adoc#using.build-systems.starters[starters].
57
57
Spring Boot provides a useful xref:gradle-plugin:index.adoc[Gradle plugin] that can be used to simplify dependency declarations and to create executable jars.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/actuator/enabling.adoc
+2-2
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
= Enabling Production-ready Features
3
3
4
4
The {code-spring-boot}/spring-boot-project/spring-boot-actuator[`spring-boot-actuator`] module provides all of Spring Boot's production-ready features.
5
-
The recommended way to enable the features is to add a dependency on the `spring-boot-starter-actuator` "`Starter`".
5
+
The recommended way to enable the features is to add a dependency on the `spring-boot-starter-actuator` starter.
6
6
7
7
.Definition of Actuator
8
8
****
9
9
An actuator is a manufacturing term that refers to a mechanical device for moving or controlling something.
10
10
Actuators can generate a large amount of motion from a small change.
11
11
****
12
12
13
-
To add the actuator to a Maven-based project, add the following "`Starter`" dependency:
13
+
To add the actuator to a Maven-based project, add the following starter dependency:
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/data/nosql.adoc
+10-10
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,11 @@ Spring Boot also provides auto-configuration for the InfluxDB client but it is d
27
27
https://redis.io/[Redis] is a cache, message broker, and richly-featured key-value store.
28
28
Spring Boot offers basic auto-configuration for the https://github.com/lettuce-io/lettuce-core/[Lettuce] and https://github.com/xetorthio/jedis/[Jedis] client libraries and the abstractions on top of them provided by https://github.com/spring-projects/spring-data-redis[Spring Data Redis].
29
29
30
-
There is a `spring-boot-starter-data-redis` "`Starter`" for collecting the dependencies in a convenient way.
30
+
There is a `spring-boot-starter-data-redis` starter for collecting the dependencies in a convenient way.
31
31
By default, it uses https://github.com/lettuce-io/lettuce-core/[Lettuce].
32
32
That starter handles both traditional and reactive applications.
33
33
34
-
TIP: We also provide a `spring-boot-starter-data-redis-reactive` "`Starter`" for consistency with the other stores with reactive support.
34
+
TIP: We also provide a `spring-boot-starter-data-redis-reactive` starter for consistency with the other stores with reactive support.
35
35
36
36
37
37
@@ -95,7 +95,7 @@ spring:
95
95
== MongoDB
96
96
97
97
https://www.mongodb.com/[MongoDB] is an open-source NoSQL document database that uses a JSON-like schema instead of traditional table-based relational data.
98
-
Spring Boot offers several conveniences for working with MongoDB, including the `spring-boot-starter-data-mongodb` and `spring-boot-starter-data-mongodb-reactive` "`Starters`".
98
+
Spring Boot offers several conveniences for working with MongoDB, including the `spring-boot-starter-data-mongodb` and `spring-boot-starter-data-mongodb-reactive` starters.
99
99
100
100
101
101
@@ -220,7 +220,7 @@ TIP: For complete details of Spring Data MongoDB, including its rich object mapp
220
220
== Neo4j
221
221
222
222
https://neo4j.com/[Neo4j] is an open-source NoSQL graph database that uses a rich data model of nodes connected by first class relationships, which is better suited for connected big data than traditional RDBMS approaches.
223
-
Spring Boot offers several conveniences for working with Neo4j, including the `spring-boot-starter-data-neo4j` "`Starter`".
223
+
Spring Boot offers several conveniences for working with Neo4j, including the `spring-boot-starter-data-neo4j` starter.
224
224
225
225
226
226
@@ -263,7 +263,7 @@ You could take the JPA example from earlier and define `City` as Spring Data Neo
263
263
264
264
include-code::CityRepository[]
265
265
266
-
The `spring-boot-starter-data-neo4j` "`Starter`" enables the repository support as well as transaction management.
266
+
The `spring-boot-starter-data-neo4j` starter enables the repository support as well as transaction management.
267
267
Spring Boot supports both classic and reactive Neo4j repositories, using the `Neo4jTemplate` or `ReactiveNeo4jTemplate` beans.
268
268
When Project Reactor is available on the classpath, the reactive style is also auto-configured.
269
269
@@ -293,7 +293,7 @@ Spring Boot supports several clients:
293
293
* The official Java API client
294
294
* The `ReactiveElasticsearchClient` provided by Spring Data Elasticsearch
295
295
296
-
Spring Boot provides a dedicated "`Starter`", `spring-boot-starter-data-elasticsearch`.
296
+
Spring Boot provides a dedicated starter, `spring-boot-starter-data-elasticsearch`.
297
297
298
298
299
299
@@ -419,7 +419,7 @@ You can choose to disable the repositories support with the following property:
419
419
420
420
https://cassandra.apache.org/[Cassandra] is an open source, distributed database management system designed to handle large amounts of data across many commodity servers.
421
421
Spring Boot offers auto-configuration for Cassandra and the abstractions on top of it provided by {url-spring-data-cassandra-site}[Spring Data Cassandra].
422
-
There is a `spring-boot-starter-data-cassandra` "`Starter`" for collecting the dependencies in a convenient way.
422
+
There is a `spring-boot-starter-data-cassandra` starter for collecting the dependencies in a convenient way.
423
423
424
424
425
425
@@ -520,7 +520,7 @@ TIP: For complete details of Spring Data Cassandra, see the https://docs.spring.
520
520
521
521
https://www.couchbase.com/[Couchbase] is an open-source, distributed, multi-model NoSQL document-oriented database that is optimized for interactive applications.
522
522
Spring Boot offers auto-configuration for Couchbase and the abstractions on top of it provided by https://github.com/spring-projects/spring-data-couchbase[Spring Data Couchbase].
523
-
There are `spring-boot-starter-data-couchbase` and `spring-boot-starter-data-couchbase-reactive` "`Starters`" for collecting the dependencies in a convenient way.
523
+
There are `spring-boot-starter-data-couchbase` and `spring-boot-starter-data-couchbase-reactive` starters for collecting the dependencies in a convenient way.
Spring Boot offers auto-configuration for any compliant LDAP server as well as support for the embedded in-memory LDAP server from https://ldap.com/unboundid-ldap-sdk-for-java/[UnboundID].
606
606
607
607
LDAP abstractions are provided by https://github.com/spring-projects/spring-data-ldap[Spring Data LDAP].
608
-
There is a `spring-boot-starter-data-ldap` "`Starter`" for collecting the dependencies in a convenient way.
608
+
There is a `spring-boot-starter-data-ldap` starter for collecting the dependencies in a convenient way.
609
609
610
610
611
611
612
612
[[data.nosql.ldap.connecting]]
613
613
=== Connecting to an LDAP Server
614
614
615
-
To connect to an LDAP server, make sure you declare a dependency on the `spring-boot-starter-data-ldap` "`Starter`" or `spring-ldap-core` and then declare the URLs of your server in your application.properties, as shown in the following example:
615
+
To connect to an LDAP server, make sure you declare a dependency on the `spring-boot-starter-data-ldap` starter or `spring-ldap-core` and then declare the URLs of your server in your application.properties, as shown in the following example:
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/features/external-config.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -585,7 +585,7 @@ If you need a secure way to store credentials and passwords, the https://cloud.s
585
585
https://yaml.org[YAML] is a superset of JSON and, as such, is a convenient format for specifying hierarchical configuration data.
586
586
The `SpringApplication` class automatically supports YAML as an alternative to properties whenever you have the https://github.com/snakeyaml/snakeyaml[SnakeYAML] library on your classpath.
587
587
588
-
NOTE: If you use "`Starters`", SnakeYAML is automatically provided by `spring-boot-starter`.
588
+
NOTE: If you use starters, SnakeYAML is automatically provided by `spring-boot-starter`.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/features/logging.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Spring Boot uses https://commons.apache.org/logging[Commons Logging] for all int
5
5
Default configurations are provided for {apiref-openjdk}/java.logging/java/util/logging/package-summary.html[Java Util Logging], https://logging.apache.org/log4j/2.x/[Log4j2], and https://logback.qos.ch/[Logback].
6
6
In each case, loggers are pre-configured to use console output with optional file output also available.
7
7
8
-
By default, if you use the "`Starters`", Logback is used for logging.
8
+
By default, if you use the starters, Logback is used for logging.
9
9
Appropriate Logback routing is also included to ensure that dependent libraries that use Java Util Logging, Commons Logging, Log4J, or SLF4J all work correctly.
10
10
11
11
TIP: There are a lot of logging frameworks available for Java.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/io/caching.adoc
+3-3
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ Additionally, {url-spring-boot-for-apache-geode-site}[Spring Boot for Apache Geo
53
53
TIP: If the `CacheManager` is auto-configured by Spring Boot, it is possible to _force_ a particular cache provider by setting the configprop:spring.cache.type[] property.
54
54
Use this property if you need to xref:io/caching.adoc#io.caching.provider.none[use no-op caches] in certain environments (such as tests).
55
55
56
-
TIP: Use the `spring-boot-starter-cache` "`Starter`" to quickly add basic caching dependencies.
56
+
TIP: Use the `spring-boot-starter-cache` starter to quickly add basic caching dependencies.
57
57
The starter brings in `spring-context-support`.
58
58
If you add dependencies manually, you must include `spring-context-support` in order to use the JCache or Caffeine support.
59
59
@@ -79,7 +79,7 @@ A `CacheManager` wrapping all beans of that type is created.
79
79
[[io.caching.provider.jcache]]
80
80
=== JCache (JSR-107)
81
81
82
-
https://jcp.org/en/jsr/detail?id=107[JCache] is bootstrapped through the presence of a `javax.cache.spi.CachingProvider` on the classpath (that is, a JSR-107 compliant caching library exists on the classpath), and the `JCacheCacheManager` is provided by the `spring-boot-starter-cache` "`Starter`".
82
+
https://jcp.org/en/jsr/detail?id=107[JCache] is bootstrapped through the presence of a `javax.cache.spi.CachingProvider` on the classpath (that is, a JSR-107 compliant caching library exists on the classpath), and the `JCacheCacheManager` is provided by the `spring-boot-starter-cache` starter.
83
83
Various compliant libraries are available, and Spring Boot provides dependency management for Ehcache 3, Hazelcast, and Infinispan.
https://github.com/ben-manes/caffeine[Caffeine] is a Java 8 rewrite of Guava's cache that supersedes support for Guava.
207
-
If Caffeine is present, a `CaffeineCacheManager` (provided by the `spring-boot-starter-cache` "`Starter`") is auto-configured.
207
+
If Caffeine is present, a `CaffeineCacheManager` (provided by the `spring-boot-starter-cache` starter) is auto-configured.
208
208
Caches can be created on startup by setting the configprop:spring.cache.cache-names[] property and can be customized by one of the following (in the indicated order):
209
209
210
210
. A cache spec defined by `spring.cache.caffeine.spec`
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/io/quartz.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
[[io.quartz]]
2
2
= Quartz Scheduler
3
3
4
-
Spring Boot offers several conveniences for working with the https://www.quartz-scheduler.org/[Quartz scheduler], including the `spring-boot-starter-quartz` "`Starter`".
4
+
Spring Boot offers several conveniences for working with the https://www.quartz-scheduler.org/[Quartz scheduler], including the `spring-boot-starter-quartz` starter.
5
5
If Quartz is available, a `Scheduler` is auto-configured (through the `SchedulerFactoryBean` abstraction).
6
6
7
7
Beans of the following types are automatically picked up and associated with the `Scheduler`:
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/messaging/pulsar.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ https://pulsar.apache.org/[Apache Pulsar] is supported by providing auto-configu
6
6
Spring Boot will auto-configure and register the classic (imperative) Spring for Apache Pulsar components when `org.springframework.pulsar:spring-pulsar` is on the classpath.
7
7
It will do the same for the reactive components when `org.springframework.pulsar:spring-pulsar-reactive` is on the classpath.
8
8
9
-
There are `spring-boot-starter-pulsar` and `spring-boot-starter-pulsar-reactive` "`Starters`" for conveniently collecting the dependencies for imperative and reactive use, respectively.
9
+
There are `spring-boot-starter-pulsar` and `spring-boot-starter-pulsar-reactive` starters for conveniently collecting the dependencies for imperative and reactive use, respectively.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/messaging/spring-integration.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
[[messaging.spring-integration]]
2
2
= Spring Integration
3
3
4
-
Spring Boot offers several conveniences for working with {url-spring-integration-site}[Spring Integration], including the `spring-boot-starter-integration` "`Starter`".
4
+
Spring Boot offers several conveniences for working with {url-spring-integration-site}[Spring Integration], including the `spring-boot-starter-integration` starter.
5
5
Spring Integration provides abstractions over messaging and also other transports such as HTTP, TCP, and others.
6
6
If Spring Integration is available on your classpath, it is initialized through the `@EnableIntegration` annotation.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/index.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
Spring Boot provides a number of utilities and annotations to help when testing your application.
5
5
Test support is provided by two modules: `spring-boot-test` contains core items, and `spring-boot-test-autoconfigure` supports auto-configuration for tests.
6
6
7
-
Most developers use the `spring-boot-starter-test` "`Starter`", which imports both Spring Boot test modules as well as JUnit Jupiter, AssertJ, Hamcrest, and a number of other useful libraries.
7
+
Most developers use the `spring-boot-starter-test` starter, which imports both Spring Boot test modules as well as JUnit Jupiter, AssertJ, Hamcrest, and a number of other useful libraries.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/spring-applications.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,6 @@ Often, you need to move beyond unit testing and start integration testing (with
9
9
It is useful to be able to perform integration testing without requiring deployment of your application or needing to connect to other infrastructure.
10
10
11
11
The Spring Framework includes a dedicated test module for such integration testing.
12
-
You can declare a dependency directly to `org.springframework:spring-test` or use the `spring-boot-starter-test` "`Starter`" to pull it in transitively.
12
+
You can declare a dependency directly to `org.springframework:spring-test` or use the `spring-boot-starter-test` starter to pull it in transitively.
13
13
14
14
If you have not used the `spring-test` module before, you should start by reading the {url-spring-framework-docs}/testing.html[relevant section] of the Spring Framework reference documentation.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/test-scope-dependencies.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
[[testing.test-scope-dependencies]]
2
2
= Test Scope Dependencies
3
3
4
-
The `spring-boot-starter-test` "`Starter`" (in the `test` `scope`) contains the following provided libraries:
4
+
The `spring-boot-starter-test` starter (in the `test` `scope`) contains the following provided libraries:
5
5
6
6
* https://junit.org/junit5/[JUnit 5]: The de-facto standard for unit testing Java applications.
7
7
* {url-spring-framework-docs}/testing/integration.html[Spring Test] & Spring Boot Test: Utilities and integration test support for Spring Boot applications.
Copy file name to clipboardexpand all lines: spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/web/servlet.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -506,7 +506,7 @@ Both the servlet and the filter registrations can be given init parameters by us
506
506
== Embedded Servlet Container Support
507
507
508
508
For servlet application, Spring Boot includes support for embedded https://tomcat.apache.org/[Tomcat], https://www.eclipse.org/jetty/[Jetty], and https://github.com/undertow-io/undertow[Undertow] servers.
509
-
Most developers use the appropriate "`Starter`" to obtain a fully configured instance.
509
+
Most developers use the appropriate starter to obtain a fully configured instance.
510
510
By default, the embedded server listens for HTTP requests on port `8080`.
0 commit comments