Empleador activo
Difference between application Context and Bean Factory
Anónimo
Both BeanFactory and ApplicationContext provides a way to get a bean from Spring IOC container by calling getBean("bean name") One difference between bean factory and application context is that former only instantiate bean when you call getBean() method while ApplicationContext instantiates Singleton bean when the container is started, It doesn't wait for getBean to be called