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 @@ -3744,7 +3744,7 @@ The `BeanPostProcessor` interface defines __callback methods__ that you can impl
3744
3744
provide your own (or override the container's default) instantiation logic,
3745
3745
dependency-resolution logic, and so forth. If you want to implement some custom logic
3746
3746
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.
3748
3748
3749
3749
You can configure multiple `BeanPostProcessor` instances, and you can control the order
3750
3750
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
3776
3776
exactly two callback methods. When such a class is registered as a post-processor with
3777
3777
the container, for each bean instance that is created by the container, the
3778
3778
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
3780
3780
declared init method) are called as well as __after__ any bean initialization callbacks.
3781
3781
The post-processor can take any action with the bean instance, including ignoring the
3782
3782
callback completely. A bean post-processor typically checks for callback interfaces or
You can’t perform that action at this time.
0 commit comments