diff --git a/src/docs/asciidoc/core/core-appendix.adoc b/src/docs/asciidoc/core/core-appendix.adoc index 60e8c81d9931a0f3d531757f013915a0ee04dd8e..6f5161753704efafbc38737453fe6d38ec0c5ee1 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 1b58d774f03df3b26115a9969699620cae5f7541..848170be70f37a2e36f301956765e1cc025c1014 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] ====