File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3709,7 +3709,7 @@ The `BeanPostProcessor` interface defines __callback methods__ that you can impl
37093709provide your own (or override the container's default) instantiation logic,
37103710dependency-resolution logic, and so forth. If you want to implement some custom logic
37113711after 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
37143714You can configure multiple `BeanPostProcessor` instances, and you can control the order
37153715in 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
37413741exactly two callback methods. When such a class is registered as a post-processor with
37423742the container, for each bean instance that is created by the container, the
37433743post-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
37453745declared init method) are called as well as __after__ any bean initialization callbacks.
37463746The post-processor can take any action with the bean instance, including ignoring the
37473747callback completely. A bean post-processor typically checks for callback interfaces or
You can’t perform that action at this time.
0 commit comments