XML Bean-Injection, The given example below gives the brief description of the extension name spaces that can be used in the spring framework With the use of extensible name space you can make Spring configuration file more simpler to use for many tasks which can occurs repeatedly . Extension namespaces also allows us to supply property values by using attributes .
xmlns:p="http://www.springframework.org/schema/p":-Here we have introduced namespace:"p" that cannot be validated.
p:name="Girish" :-Here we simply use the property name in the "p" namespace, as in "p:name".
context.xml
|
Main.java
This is the file through which we are retrieving the property of the bean defined above. Some of the methods which are used here are as follows:-
XmlBeanFactory factory = new XmlBeanFactory(new ClassPathResource("context.xml")):-This method creates an instance of the XmlBeanFactory which is used to read bean definition from an XML document
new ClassPathResource("context.xml"):-Creates a new ClassPathResource for ClassLoader .Here the context.xml is the file which is to be loaded.
String.format("Name: %s\n" +"Age: %d\n" ):-This method formats an object to produce a string. Here
%s:-is for accessing String value.
%d:-is for accessing Integer value.
import org.springframework.beans.factory.xml.XmlBeanFactory;
|
Output of the Spring Injection Example program
Nov 25, 2008 1:03:13 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [context.xml] Name: Girish Age: 24 Address: Noida Company: Roseindia.net E-mail: girish@roseindia.net BUILD SUCCESSFUL (total time: 1 second) |
0 comments:
Post a Comment