diff --git a/spring-framework-reference/src/beans-dependencies.xml b/spring-framework-reference/src/beans-dependencies.xml index c29484c152..cd57291a7d 100644 --- a/spring-framework-reference/src/beans-dependencies.xml +++ b/spring-framework-reference/src/beans-dependencies.xml @@ -1437,7 +1437,7 @@ package fiona.apple; // Spring-API imports import org.springframework.beans.BeansException; -import org.springframework.context.Applicationcontext; +import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; public class CommandManager implements ApplicationContextAware { diff --git a/spring-framework-reference/src/beans-extension-points.xml b/spring-framework-reference/src/beans-extension-points.xml index ece0f13728..94a3a26dea 100644 --- a/spring-framework-reference/src/beans-extension-points.xml +++ b/spring-framework-reference/src/beans-extension-points.xml @@ -93,7 +93,7 @@ registration is through ApplicationContext auto-detection (as described above), it is also possible to register them programmatically - against an ApplicationContext using the + against a ConfigurableBeanFactory using the addBeanPostProcessor method. This can be useful when needing to evaluate conditional logic before registration, or even for copying bean post processors across contexts in a hierarchy. Note