Skip to content

Commit 24a8bbd

Browse files
Polish use of the term starter in documentation
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.
1 parent 55ac058 commit 24a8bbd

File tree

17 files changed

+32
-32
lines changed

17 files changed

+32
-32
lines changed

spring-boot-project/spring-boot-docs/src/docs/antora/modules/ROOT/pages/installing.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Ubuntu users can run `sudo apt-get install maven`.
3939
Windows users with https://chocolatey.org/[Chocolatey] can run `choco install maven` from an elevated (administrator) prompt.
4040

4141
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].
4343
Spring Boot also provides an optional xref:maven-plugin:index.adoc[Maven plugin] to create executable jars.
4444

4545
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.
5353
If you do not already have Gradle installed, you can follow the instructions at https://gradle.org.
5454

5555
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].
5757
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.
5858

5959
.Gradle Wrapper

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/actuator/enabling.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
= Enabling Production-ready Features
33

44
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.
66

77
.Definition of Actuator
88
****
99
An actuator is a manufacturing term that refers to a mechanical device for moving or controlling something.
1010
Actuators can generate a large amount of motion from a small change.
1111
****
1212

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:
1414

1515
[source,xml]
1616
----

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/data/nosql.adoc

+10-10
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ Spring Boot also provides auto-configuration for the InfluxDB client but it is d
2727
https://redis.io/[Redis] is a cache, message broker, and richly-featured key-value store.
2828
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].
2929

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.
3131
By default, it uses https://github.com/lettuce-io/lettuce-core/[Lettuce].
3232
That starter handles both traditional and reactive applications.
3333

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

3636

3737

@@ -95,7 +95,7 @@ spring:
9595
== MongoDB
9696

9797
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.
9999

100100

101101

@@ -220,7 +220,7 @@ TIP: For complete details of Spring Data MongoDB, including its rich object mapp
220220
== Neo4j
221221

222222
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.
224224

225225

226226

@@ -263,7 +263,7 @@ You could take the JPA example from earlier and define `City` as Spring Data Neo
263263

264264
include-code::CityRepository[]
265265

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.
267267
Spring Boot supports both classic and reactive Neo4j repositories, using the `Neo4jTemplate` or `ReactiveNeo4jTemplate` beans.
268268
When Project Reactor is available on the classpath, the reactive style is also auto-configured.
269269

@@ -293,7 +293,7 @@ Spring Boot supports several clients:
293293
* The official Java API client
294294
* The `ReactiveElasticsearchClient` provided by Spring Data Elasticsearch
295295

296-
Spring Boot provides a dedicated "`Starter`", `spring-boot-starter-data-elasticsearch`.
296+
Spring Boot provides a dedicated starter, `spring-boot-starter-data-elasticsearch`.
297297

298298

299299

@@ -419,7 +419,7 @@ You can choose to disable the repositories support with the following property:
419419

420420
https://cassandra.apache.org/[Cassandra] is an open source, distributed database management system designed to handle large amounts of data across many commodity servers.
421421
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.
423423

424424

425425

@@ -520,7 +520,7 @@ TIP: For complete details of Spring Data Cassandra, see the https://docs.spring.
520520

521521
https://www.couchbase.com/[Couchbase] is an open-source, distributed, multi-model NoSQL document-oriented database that is optimized for interactive applications.
522522
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.
524524

525525

526526

@@ -605,14 +605,14 @@ https://en.wikipedia.org/wiki/Lightweight_Directory_Access_Protocol[LDAP] (Light
605605
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].
606606

607607
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.
609609

610610

611611

612612
[[data.nosql.ldap.connecting]]
613613
=== Connecting to an LDAP Server
614614

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:
616616

617617
[configprops,yaml]
618618
----

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/data/sql.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ If HikariCP is available, we always choose it.
125125
. Otherwise, if https://commons.apache.org/proper/commons-dbcp/[Commons DBCP2] is available, we use it.
126126
. If none of HikariCP, Tomcat, and DBCP2 are available and if Oracle UCP is available, we use it.
127127

128-
NOTE: If you use the `spring-boot-starter-jdbc` or `spring-boot-starter-data-jpa` "`starters`", you automatically get a dependency to `HikariCP`.
128+
NOTE: If you use the `spring-boot-starter-jdbc` or `spring-boot-starter-data-jpa` starters, you automatically get a dependency to `HikariCP`.
129129

130130
You can bypass that algorithm completely and specify the connection pool to use by setting the configprop:spring.datasource.type[] property.
131131
This is especially important if you run your application in a Tomcat container, as `tomcat-jdbc` is provided by default.

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/features/external-config.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ If you need a secure way to store credentials and passwords, the https://cloud.s
585585
https://yaml.org[YAML] is a superset of JSON and, as such, is a convenient format for specifying hierarchical configuration data.
586586
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.
587587

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`.
589589

590590

591591

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/features/logging.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Spring Boot uses https://commons.apache.org/logging[Commons Logging] for all int
55
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].
66
In each case, loggers are pre-configured to use console output with optional file output also available.
77

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.
99
Appropriate Logback routing is also included to ensure that dependent libraries that use Java Util Logging, Commons Logging, Log4J, or SLF4J all work correctly.
1010

1111
TIP: There are a lot of logging frameworks available for Java.

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/io/caching.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Additionally, {url-spring-boot-for-apache-geode-site}[Spring Boot for Apache Geo
5353
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.
5454
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).
5555

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.
5757
The starter brings in `spring-context-support`.
5858
If you add dependencies manually, you must include `spring-context-support` in order to use the JCache or Caffeine support.
5959

@@ -79,7 +79,7 @@ A `CacheManager` wrapping all beans of that type is created.
7979
[[io.caching.provider.jcache]]
8080
=== JCache (JSR-107)
8181

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.
8383
Various compliant libraries are available, and Spring Boot provides dependency management for Ehcache 3, Hazelcast, and Infinispan.
8484
Any other compliant library can be added as well.
8585

@@ -204,7 +204,7 @@ include-code::MyRedisCacheManagerConfiguration[]
204204
=== Caffeine
205205

206206
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.
208208
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):
209209

210210
. A cache spec defined by `spring.cache.caffeine.spec`

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/io/quartz.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[io.quartz]]
22
= Quartz Scheduler
33

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.
55
If Quartz is available, a `Scheduler` is auto-configured (through the `SchedulerFactoryBean` abstraction).
66

77
Beans of the following types are automatically picked up and associated with the `Scheduler`:

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/messaging/amqp.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
The Advanced Message Queuing Protocol (AMQP) is a platform-neutral, wire-level protocol for message-oriented middleware.
55
The Spring AMQP project applies core Spring concepts to the development of AMQP-based messaging solutions.
6-
Spring Boot offers several conveniences for working with AMQP through RabbitMQ, including the `spring-boot-starter-amqp` "`Starter`".
6+
Spring Boot offers several conveniences for working with AMQP through RabbitMQ, including the `spring-boot-starter-amqp` starter.
77

88

99

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/messaging/pulsar.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ https://pulsar.apache.org/[Apache Pulsar] is supported by providing auto-configu
66
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.
77
It will do the same for the reactive components when `org.springframework.pulsar:spring-pulsar-reactive` is on the classpath.
88

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

1111

1212

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/messaging/spring-integration.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[messaging.spring-integration]]
22
= Spring Integration
33

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.
55
Spring Integration provides abstractions over messaging and also other transports such as HTTP, TCP, and others.
66
If Spring Integration is available on your classpath, it is initialized through the `@EnableIntegration` annotation.
77

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/index.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Spring Boot provides a number of utilities and annotations to help when testing your application.
55
Test support is provided by two modules: `spring-boot-test` contains core items, and `spring-boot-test-autoconfigure` supports auto-configuration for tests.
66

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

99
[TIP]
1010
====

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/spring-applications.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ Often, you need to move beyond unit testing and start integration testing (with
99
It is useful to be able to perform integration testing without requiring deployment of your application or needing to connect to other infrastructure.
1010

1111
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.
1313

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

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/testing/test-scope-dependencies.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[testing.test-scope-dependencies]]
22
= Test Scope Dependencies
33

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:
55

66
* https://junit.org/junit5/[JUnit 5]: The de-facto standard for unit testing Java applications.
77
* {url-spring-framework-docs}/testing/integration.html[Spring Test] & Spring Boot Test: Utilities and integration test support for Spring Boot applications.

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/web/reactive.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ When it does so, the orders shown in the following table will be used:
273273
== Embedded Reactive Server Support
274274

275275
Spring Boot includes support for the following embedded reactive web servers: Reactor Netty, Tomcat, Jetty, and Undertow.
276-
Most developers use the appropriate “Starter” to obtain a fully configured instance.
276+
Most developers use the appropriate starter to obtain a fully configured instance.
277277
By default, the embedded server listens for HTTP requests on port 8080.
278278

279279

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/web/servlet.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ Both the servlet and the filter registrations can be given init parameters by us
506506
== Embedded Servlet Container Support
507507

508508
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.
510510
By default, the embedded server listens for HTTP requests on port `8080`.
511511

512512

spring-boot-project/spring-boot-docs/src/docs/antora/modules/tutorial/pages/first-application/index.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ For simplicity, we continue to use a plain text editor for this example.
178178
[[getting-started.first-application.dependencies]]
179179
== Adding Classpath Dependencies
180180

181-
Spring Boot provides a number of "`Starters`" that let you add jars to your classpath.
182-
"`Starters`" provide dependencies that you are likely to need when developing a specific type of application.
181+
Spring Boot provides a number of starters that let you add jars to your classpath.
182+
Starters provide dependencies that you are likely to need when developing a specific type of application.
183183

184184

185185

@@ -297,7 +297,7 @@ Since `spring-boot-starter-web` added Tomcat and Spring MVC, the auto-configurat
297297

298298
.Starters and Auto-configuration
299299
****
300-
Auto-configuration is designed to work well with "`Starters`", but the two concepts are not directly tied.
300+
Auto-configuration is designed to work well with starters, but the two concepts are not directly tied.
301301
You are free to pick and choose jar dependencies outside of the starters.
302302
Spring Boot still does its best to auto-configure your application.
303303
****

0 commit comments

Comments
 (0)