91-9990449935 0120-4256464 |
Steps to create spring applicationHere, we are going to learn the simple steps to create the first spring application. To run this application, we are not using any IDE. We are simply using the command prompt. Let's see the simple steps to create the spring application
Steps to create spring applicationLet's see the 5 steps to create the first spring application. 1) Create Java classThis is the simple java bean class containing the name property only. This is simple bean class, containing only one property name with its getters and setters method. This class contains one extra method named displayInfo() that prints the student name by the hello message. 2) Create the xml fileIn case of myeclipse IDE, you don't need to create the xml file as myeclipse does this for yourselves. Open the applicationContext.xml file, and write the following code: The bean element is used to define the bean for the given class. The property subelement of bean specifies the property of the Student class named name. The value specified in the property element will be set in the Student class object by the IOC container. 3) Create the test classCreate the java class e.g. Test. Here we are getting the object of Student class from the IOC container using the getBean() method of BeanFactory. Let's see the code of test class. The Resource object represents the information of applicationContext.xml file. The Resource is the interface and the ClassPathResource is the implementation class of the Reource interface. The BeanFactory is responsible to return the bean. The XmlBeanFactory is the implementation class of the BeanFactory. There are many methods in the BeanFactory interface. One method is getBean(), which returns the object of the associated class. 4) Load the jar files required for spring frameworkThere are mainly three jar files required to run this application.
For the future use, You can download the required jar files for spring core application. download the core jar files for spring To run this example, you need to load only spring core jar files. 5) Run the test classNow run the Test class. You will get the output Hello: Vimal Jaiswal. |