Skip to content

Commit 2ba2bd9

Browse files
committed
Merge branch '3.2.x' into 3.3.x
Closes gh-42454
2 parents 003b182 + bc046ba commit 2ba2bd9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

buildSrc/src/main/resources/org/springframework/boot/build/antora/antora-asciidoc-attributes.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ url-spring-data-gemfire-site=https://spring.io/projects/spring-data-gemfire
4747
url-spring-data-geode-site=https://spring.io/projects/spring-data-geode
4848
url-spring-data-jdbc-docs=https://docs.spring.io/spring-data/relational/reference/{version-spring-data-jdbc-docs}
4949
url-spring-data-jpa-javadoc=https://docs.spring.io/spring-data/jpa/docs/{version-spring-data-jpa-javadoc}/api
50-
url-spring-data-jpa-site=https://spring.io/projects/spring-jpa
50+
url-spring-data-jpa-site=https://spring.io/projects/spring-data-jpa
5151
url-spring-data-jpa-docs=https://docs.spring.io/spring-data/jpa/reference/{version-spring-data-jpa-docs}
5252
url-spring-data-ldap-site=https://spring.io/projects/spring-data-ldap
5353
url-spring-data-mongodb-javadoc=https://docs.spring.io/spring-data/mongodb/docs/{version-spring-data-mongodb-javadoc}/api

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ spring:
165165
[[data.sql.jdbc-template]]
166166
== Using JdbcTemplate
167167

168-
Spring's `JdbcTemplate` and `NamedParameterJdbcTemplate` classes are auto-configured, and you can `@Autowire` them directly into your own beans, as shown in the following example:
168+
Spring's `JdbcTemplate` and `NamedParameterJdbcTemplate` classes are auto-configured, and you can autowire them directly into your own beans, as shown in the following example:
169169

170170
include-code::MyBean[]
171171

@@ -528,7 +528,7 @@ If you want to make sure that each context has a separate embedded database, you
528528
[[data.sql.r2dbc.using-database-client]]
529529
=== Using DatabaseClient
530530

531-
A `DatabaseClient` bean is auto-configured, and you can `@Autowire` it directly into your own beans, as shown in the following example:
531+
A `DatabaseClient` bean is auto-configured, and you can autowire it directly into your own beans, as shown in the following example:
532532

533533
include-code::MyBean[]
534534

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ If you need to start a full running server, we recommend that you use random por
169169
If you use `@SpringBootTest(webEnvironment=WebEnvironment.RANDOM_PORT)`, an available port is picked at random each time your test runs.
170170

171171
The `@LocalServerPort` annotation can be used to xref:how-to:webserver.adoc#howto.webserver.discover-port[inject the actual port used] into your test.
172-
For convenience, tests that need to make REST calls to the started server can additionally `@Autowire` a {url-spring-framework-docs}/testing/webtestclient.html[`WebTestClient`], which resolves relative links to the running server and comes with a dedicated API for verifying responses, as shown in the following example:
172+
For convenience, tests that need to make REST calls to the started server can additionally autowire a {url-spring-framework-docs}/testing/webtestclient.html[`WebTestClient`], which resolves relative links to the running server and comes with a dedicated API for verifying responses, as shown in the following example:
173173

174174
include-code::MyRandomPortWebTestClientTests[]
175175

0 commit comments

Comments
 (0)