Possible Duplicate:
New to Spring - BeanFactory vs ApplicationContext?
Why we always use the term "spring applicationcontext" when we talk about the spring application deployed in some app server. Why not bean factory.
Possible Duplicate:
New to Spring - BeanFactory vs ApplicationContext?
Why we always use the term "spring applicationcontext" when we talk about the spring application deployed in some app server. Why not bean factory.
Because the concrete implementation used by the app is also an instance of ApplicationContext
, which extends BeanFactory
.