From f7606ba51b1ba8b2de012f316cab2091a49bfb90 Mon Sep 17 00:00:00 2001 From: Sviatoslav Hryb Date: Fri, 9 Apr 2021 17:59:48 +0300 Subject: [PATCH] Update ref docs regarding RequiredAnnotationBPP registration The RequiredAnnotationBeanPostProcessor is no longer automatically registered via XML namespace elements. Closes gh-26783 --- src/docs/asciidoc/core/core-beans.adoc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/docs/asciidoc/core/core-beans.adoc b/src/docs/asciidoc/core/core-beans.adoc index 9d6f5d97310..394db897068 100644 --- a/src/docs/asciidoc/core/core-beans.adoc +++ b/src/docs/asciidoc/core/core-beans.adoc @@ -4690,10 +4690,7 @@ references and values even when you use the class outside of a container. [TIP] ==== The {api-spring-framework}/beans/factory/annotation/RequiredAnnotationBeanPostProcessor.html[`RequiredAnnotationBeanPostProcessor`] -must be registered as a bean to enable support for the `@Required` annotation. Note, -however, that a `RequiredAnnotationBeanPostProcessor` bean is registered automatically -when using the `` or `` XML -namespace elements. +must be registered as a bean to enable support for the `@Required` annotation. ==== [NOTE]