File tree 1 file changed +2
-2
lines changed
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
3709
3709
provide your own (or override the container's default) instantiation logic,
3710
3710
dependency-resolution logic, and so forth. If you want to implement some custom logic
3711
3711
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.
3713
3713
3714
3714
You can configure multiple `BeanPostProcessor` instances, and you can control the order
3715
3715
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
3741
3741
exactly two callback methods. When such a class is registered as a post-processor with
3742
3742
the container, for each bean instance that is created by the container, the
3743
3743
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
3745
3745
declared init method) are called as well as __after__ any bean initialization callbacks.
3746
3746
The post-processor can take any action with the bean instance, including ignoring the
3747
3747
callback completely. A bean post-processor typically checks for callback interfaces or
You can’t perform that action at this time.
0 commit comments