Wednesday 20 May 2015

Java Source World: What are the common implementations of the ApplicationContext



The three commonly used implementation of 'Application Context' are:

FileSystemXmlApplic ationContext: This container loads the definitions of the beans from an XML file. Here you need to provide the full path of the XML bean configuration file to the constructor.

ClassPathXmlApplicationContext: This container loads the definitions of the beans from an XML file. Here you do not need to provide the full path of the XML file but you need to set CLASSPATH properly because this container will look bean configuration XML file in CLASSPATH.

WebXmlApplic ationContext: This container loads the XML file with definitions of all beans from within a web application. 

No comments:

Post a Comment