Java Spring Framework Question:
Download Job Interview Questions and Answers PDF
What is XMLBeanFactory?
Answer:
BeanFactory has many implementations in Spring. But one of the most useful one is org.springframework.beans.factory.xml.XmlBeanFactory, which loads its beans based on the definitions contained in an XML file. To create an XmlBeanFactory, pass a java.io.InputStream to the constructor. The InputStream will provide the XML to the factory. For example, the following code snippet uses a java.io.FileInputStream to provide a bean definition XML file to XmlBeanFactory.
Download Spring Framework Interview Questions And Answers
PDF
Previous Question | Next Question |
What does a simple spring application contain? | Explain Bean lifecycle in Spring framework? |