Skip to content

Commit 7a45d5f

Browse files
committed
Revised section on custom BeanPostProcessors
Issue: SPR-17556
1 parent 2efac5a commit 7a45d5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/asciidoc/core/core-beans.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -3709,7 +3709,7 @@ The `BeanPostProcessor` interface defines __callback methods__ that you can impl
37093709
provide your own (or override the container's default) instantiation logic,
37103710
dependency-resolution logic, and so forth. If you want to implement some custom logic
37113711
after the Spring container finishes instantiating, configuring, and initializing a bean,
3712-
you can plug in one or more `BeanPostProcessor` implementations.
3712+
you can plug in one or more custom `BeanPostProcessor` implementations.
37133713

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

0 commit comments

Comments
 (0)