From e719bc2cda2e618c7e37ed476be0fae995f8befa Mon Sep 17 00:00:00 2001 From: Hubert Wo <2518652+HubertWo@users.noreply.github.com> Date: Sat, 10 Jul 2021 11:37:18 +0200 Subject: [PATCH 1/2] Fix link to Javadoc API See gh-27151 --- src/docs/asciidoc/core/core-validation.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/core/core-validation.adoc b/src/docs/asciidoc/core/core-validation.adoc index 82c9b0d2f94a..5d80f2a0820a 100644 --- a/src/docs/asciidoc/core/core-validation.adoc +++ b/src/docs/asciidoc/core/core-validation.adoc @@ -215,7 +215,7 @@ as the following example shows: Validation errors are reported to the `Errors` object passed to the validator. In the case of Spring Web MVC, you can use the `` tag to inspect the error messages, but you can also inspect the `Errors` object yourself. More information about the -methods it offers can be found in the {api-spring-framework}validation/Errors.html[javadoc]. +methods it offers can be found in the {api-spring-framework}/validation/Errors.html[javadoc]. From 98685e8be7bb273897f782f71ed38f7b1fcf41f4 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sun, 11 Jul 2021 09:09:46 +0200 Subject: [PATCH 2/2] Fix link to Javadoc API See gh-27151 --- src/docs/asciidoc/core/core-aop-api.adoc | 2 +- src/docs/asciidoc/testing/testing-webtestclient.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/core/core-aop-api.adoc b/src/docs/asciidoc/core/core-aop-api.adoc index 7c3e40e30c2e..26e91ea39b18 100644 --- a/src/docs/asciidoc/core/core-aop-api.adoc +++ b/src/docs/asciidoc/core/core-aop-api.adoc @@ -1637,7 +1637,7 @@ The following listing shows an example configuration: Note that the target object (`businessObjectTarget` in the preceding example) must be a prototype. This lets the `PoolingTargetSource` implementation create new instances -of the target to grow the pool as necessary. See the {api-spring-framework}aop/target/AbstractPoolingTargetSource.html[javadoc of +of the target to grow the pool as necessary. See the {api-spring-framework}/aop/target/AbstractPoolingTargetSource.html[javadoc of `AbstractPoolingTargetSource`] and the concrete subclass you wish to use for information about its properties. `maxSize` is the most basic and is always guaranteed to be present. diff --git a/src/docs/asciidoc/testing/testing-webtestclient.adoc b/src/docs/asciidoc/testing/testing-webtestclient.adoc index 53a30f448440..6c5dfb80da51 100644 --- a/src/docs/asciidoc/testing/testing-webtestclient.adoc +++ b/src/docs/asciidoc/testing/testing-webtestclient.adoc @@ -45,7 +45,7 @@ to handle requests: ---- For Spring MVC, use the following which delegates to the -{api-spring-framework}/https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/test/web/servlet/setup/StandaloneMockMvcBuilder.html[StandaloneMockMvcBuilder] +{api-spring-framework}/test/web/servlet/setup/StandaloneMockMvcBuilder.html[StandaloneMockMvcBuilder] to load infrastructure equivalent to the <>, registers the given controller(s), and creates an instance of <> to handle requests: