spring xml configuration

How to use p-namespace in Spring XML configuration for specifying a property argument concisely?

This tutorial explains how to use p-namespace in Spring XML configuration. As you know we can define bean properties and constructor arguments as references to other managed beans. Also Spring XML based configuration-metadata supports both <property/> and <constructor-arg/> as sub… Read More!

spring framework tutorial

Difference between Spring ApplicationContext and BeanFactory

This tutorial explains the difference between ApplicationContext and BeanFactory interfaces. On high level, BeanFactory is the root interface used for accessing Spring bean container and ApplicationContext is the central interface used to provide configuration for an application. ApplicationContext interface is… Read More!