From 35ea33e13a452b7fd3b7e5fae3eeddc058ae4b00 Mon Sep 17 00:00:00 2001 From: Sviatoslav Hryb Date: Fri, 9 Apr 2021 17:32:17 +0300 Subject: [PATCH] Update documentation for Closes gh-26782 --- src/docs/asciidoc/core/core-appendix.adoc | 3 ++- src/docs/asciidoc/core/core-beans.adoc | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/core/core-appendix.adoc b/src/docs/asciidoc/core/core-appendix.adoc index 60e8c81d993..6f516175370 100644 --- a/src/docs/asciidoc/core/core-appendix.adoc +++ b/src/docs/asciidoc/core/core-appendix.adoc @@ -568,8 +568,9 @@ is a convenience mechanism that sets up a <> model -* <> and `@Value` +* <>, `@Value` and `@Lookup` * JSR-250's `@Resource`, `@PostConstruct` and `@PreDestroy` (if available) +* JAX-WS `@WebServiceRef` and EJB3 `@EJB` (if available) * JPA's `@PersistenceContext` and `@PersistenceUnit` (if available) * Spring's <> diff --git a/src/docs/asciidoc/core/core-beans.adoc b/src/docs/asciidoc/core/core-beans.adoc index 1b58d774f03..848170be70f 100644 --- a/src/docs/asciidoc/core/core-beans.adoc +++ b/src/docs/asciidoc/core/core-beans.adoc @@ -4628,10 +4628,11 @@ configuration (notice the inclusion of the `context` namespace): ---- (The implicitly registered post-processors include +{api-spring-framework}/context/annotation/ConfigurationClassPostProcessor.html[`ConfigurationClassPostProcessor`] {api-spring-framework}/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor.html[`AutowiredAnnotationBeanPostProcessor`], {api-spring-framework}/context/annotation/CommonAnnotationBeanPostProcessor.html[`CommonAnnotationBeanPostProcessor`], {api-spring-framework}/orm/jpa/support/PersistenceAnnotationBeanPostProcessor.html[`PersistenceAnnotationBeanPostProcessor`], and -{api-spring-framework}/beans/factory/annotation/RequiredAnnotationBeanPostProcessor.html[`RequiredAnnotationBeanPostProcessor`].) +{api-spring-framework}/context/event/EventListenerMethodProcessor.html[`EventListenerMethodProcessor.html`].) [NOTE] ====