Choosing an interface in the Spring IoC container
When choosing an interface in the Spring IoC container, the choice is between the BeanFactory and ApplicationContext interfaces. The ApplicationContext interface is superset of the BeanFactory interface, it adds additional functionality such as easier integration with Spring's AOP features, event propagation, and application-layer specific contexts such as the WebApplicationContext for use in web applications. If you need any of this additional functionality, select the ApplicationContext, if not select the BeanFactory.
| Rating: | no ratings, 0 total Votes |
| Categories: | Java spring programming |
| Added: | on Jul 18, 2007 at 6:22 am |
| Added By: | an anonymous user |

