Skip to content

Commit 4decaa2

Browse files
committed
Revised section on custom BeanPostProcessors
Issue: SPR-17556
1 parent 9d504c8 commit 4decaa2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/asciidoc/core-beans.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3744,7 +3744,7 @@ The `BeanPostProcessor` interface defines __callback methods__ that you can impl
37443744
provide your own (or override the container's default) instantiation logic,
37453745
dependency-resolution logic, and so forth. If you want to implement some custom logic
37463746
after the Spring container finishes instantiating, configuring, and initializing a bean,
3747-
you can plug in one or more `BeanPostProcessor` implementations.
3747+
you can plug in one or more custom `BeanPostProcessor` implementations.
37483748

37493749
You can configure multiple `BeanPostProcessor` instances, and you can control the order
37503750
in which these ``BeanPostProcessor``s execute by setting the `order` property. You can
@@ -3776,7 +3776,7 @@ The `org.springframework.beans.factory.config.BeanPostProcessor` interface consi
37763776
exactly two callback methods. When such a class is registered as a post-processor with
37773777
the container, for each bean instance that is created by the container, the
37783778
post-processor gets a callback from the container both __before__ container
3779-
initialization methods (such as InitializingBean's __afterPropertiesSet()__ and any
3779+
initialization methods (such as InitializingBean's __afterPropertiesSet()__ or any
37803780
declared init method) are called as well as __after__ any bean initialization callbacks.
37813781
The post-processor can take any action with the bean instance, including ignoring the
37823782
callback completely. A bean post-processor typically checks for callback interfaces or

0 commit comments

Comments
 (0)