Spring Hello world example in eclipse

This is 4 of 16 parts of tutorial series

Tutorial Content: Spring tutorial for beginners

If you want to be master in spring core, you can go for its certification too. You can go through spring certification questions which I found useful.

After having some basic understanding of spring framework now we are ready to create Hello world example.
Firstly download required jars and docs from Spring Downloads | SpringSource.org
Now, In eclipse IDE,click on File->new->Click on other and then select java project

 

Click on next and  Write project name.I have writtern here “HelloWorldInSpring3”

Click on finish and now our project is created
Create new folder “jars” under src folder so for that right click on project->new->folder
Write folder name as “jars”
click on finish and empy jar folder will be created in src folder.
Now we will add the Spring 3. libraries to the project. Extract the “spring-framework-3.1.1.RELEASE-with-docs.zip” file if you have not extracted. Now go to the “dist” directory of the and then copy all the jar files (Ctrl+C) and paste on the jars directory (of our project) in the Eclipse IDE.
Then find the commons-logging.jar from extracted folder and also copy this file into Eclipse IDE. You will find this library into spring-framework-3.0.0.RELEASE-with-docsspring-framework-3.1.1.RELEASEprojectsspring-buildlibivy folder.
Now add all the jars to “Java Build Path”. Right click on the “Spring3HelloWorld” in project explorer and then select properties. Then select “Java Build Path” –> Libraries and then click on the “Add JARs” button. And add all the libraries to Java Build Path.
Create a new package org.arpit.javapostsforlearning to hold the java files. Right click on the “src” folder and then select New –> Package. Then provide the package name as org.arpit.javapostsforlearning and click on the “Finish” button.

Spring hello world example

Create a new Java file Spring3HelloWorld.java under the package org.arpit.javapostsforlearning and add the following code:

now create a Xml file called Spring3HelloWorld in src folder.Add following content to it
Here tag is for defining multiples beans.All beans of our program are defined in tag
tag is for defining a single bean.

“id” is for providing unique identification to bean.
“class” is fully qualified name of class
“property” is used for defining attribute of bean class.

The above xml file declares the spring bean “Spring3HelloWorldBean” of the class org.arpit.javapostsforlearningSpring3HelloWorld.

Create another java file named “Spring3HelloWorldMain.java” under package org.arpit.javapostsforlearning.Copy following content in “Spring3HelloWorldMain.java” file

In the above code, we have created the instance of ApplicationContext and the retrieved the “Spring3HelloWorldBean”. Then we called the printHello() method on the bean.

Run program:

right click on project->Run as->Java Application

Output is :

That’s all about Spring hello world example.
In next post, we will see dependency injection via setter method.

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *