Skip to main content

Hello world application in spring using xml bean configuration.

1. Download the spring3.0 jars from following location.
 http://s3.amazonaws.com/dist.springframework.org/release/SPR/spring-framework-3.0.6.RELEASE-with-docs.zip


2. Create a new Java project and include the following jars into your java build path. 


1.   org.springframework.aop-3.0.6.RELEASE.jar
2.   org.springframework.asm-3.0.6.RELEASE.jar
3.   org.springframework.aspects-3.0.6.RELEASE.jar
4.   org.springframework.beans-3.0.6.RELEASE.jar
5.   org.springframework.context-3.0.6.RELEASE.jar
6.   org.springframework.context.support-3.0.6.RELEASE.jar
7.   org.springframework.core-3.0.6.RELEASE.jar
8.   org.springframework.expression-3.0.6.RELEASE.jar
9.   org.springframework.instrument-3.0.6.RELEASE.jar
10. org.springframework.instrument.tomcat-3.0.6.RELEASE.jar
11. org.springframework.jdbc-3.0.6.RELEASE.jar
12. org.springframework.jms-3.0.6.RELEASE.jar
13. org.springframework.orm-3.0.6.RELEASE.jar
14. org.springframework.oxm-3.0.6.RELEASE.jar
15. org.springframework.spring-library-3.0.6.RELEASE.libd
16. org.springframework.test-3.0.6.RELEASE.jar
17. org.springframework.transaction-3.0.6.RELEASE.jar
18. org.springframework.web-3.0.6.RELEASE.jar
19. org.springframework.web.portlet-3.0.6.RELEASE.jar
20. org.springframework.web.servlet-3.0.6.RELEASE.jar
21. org.springframework.web.struts-3.0.6.RELEASE.jar


All the jars are present in spring-framework-3.0.6.RELEASE\dist folder


3. Create a new HelloWorldBean and include the following code.
package com.study.bean;

public class HelloWorldBean {
      private String message;
      public HelloWorldBean(){
           
      }
      public HelloWorldBean(String message){
            this.message = message;
      }
     
      public void setMessage(String message){
            this.message = message;
      }
      public String getMessgae(){
            return message;
      }
}

4. Create a new main class and include the following code.
                 

package com.bean.execution;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource
import com.study.bean.HelloWorldBean;
public class HelloWorldExecution {
public static void main(String args[]){
         BeanFactory factory = new XmlBeanFactory(new ClassPathResource("BeanConfig.xml"));
         HelloWorldBean helloWorldBean = (HelloWorldBean)factory.getBean("HelloWorld");
         System.out.println(helloWorldBean.getMessgae());
         helloWorldBean.setMessage("Modified message");
         System.out.println(helloWorldBean.getMessgae());
   }
}


5. Create a BeanConfig xml file inside the src folder and include the following code.

 <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

   <bean id="HelloWorld" class="com.study.bean.HelloWorldBean">
         <property name="message">
               <value>Hello World...!</value>
         </property>
   </bean>

</beans>
6. Execute the HelloWorldExecution main method

    I got the following errors.

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.<init>(DefaultSingletonBeanRegistry.java:83)
    at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.<init>(FactoryBeanRegistrySupport.java:43)
    at org.springframework.beans.factory.support.AbstractBeanFactory.<init>(AbstractBeanFactory.java:174)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.<init>(AbstractAutowireCapableBeanFactory.java:154)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.<init>(AbstractAutowireCapableBeanFactory.java:165)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.<init>(DefaultListableBeanFactory.java:158)
    at org.springframework.beans.factory.xml.XmlBeanFactory.<init>(XmlBeanFactory.java:72)
    at org.springframework.beans.factory.xml.XmlBeanFactory.<init>(XmlBeanFactory.java:61)
    at com.bean.execution.HelloWorldExecution.main(HelloWorldExecution.java:9)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    ... 9 more

7. For resolving this issue, I download the Apache common logging jar from following location and I added the "commons-logging-1.1.1.jar" into my java build path.

      http://apache.mirrors.pair.com//commons/logging/binaries/commons-logging-1.1.1-bin.zip
      Now execute the HelloWorldMain class.

    The result of the application is
      Nov 30, 2011 12:33:12 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [BeanConfig.xml]
Hello World...!
Modified message



Comments

Popular posts from this blog

Getting key/value pair from JSON object and getting variable name and value from JavaScript object.

 Hi, I had faced one issue like this. I have an JSON object but I don't know any key name but I need to get the all the key and corresponding value from JSON object using client side JavaScript. Suddenly I wondered whether it's possible or not, after that I had done lot of workaround and finally got this solution. See the below example.    function getKeyValueFromJSON() {     var jsonObj =  {a:10,b:20,c:30,d:50} ;     for ( var key in jsonObj) {       alert( "Key: " + key + " value: " + jsonObj[key]);     }  }  In this example I have created the one json array as string, and converted this string into JSON object using eval() function. Using for-each loop I got all the key value from jsonObj, and finally using that key I got the corresponding value.  Finally I got the alert like this,    Key: a value:10    Key: b value:20    Key...

Meteor tutorial - Part II - Building mobile applications

In my previous blog post , I have explained basics of meteor. In this tutorial I am going to add mobile support to the existing meteor application. Installing mobile SDKs Before going to start we need to install IOS and android SDKs (Software development kit). Here I am installing SDKs for iOS. Please keep in mind this is one time process. For installing iOS SDKs, we need to invoke “meteor install-sdk ios”. The same way you can install android SKDs by invoking “meteor install-sdk android” command. Adding mobile platform support I am using already created application called “myapp” and going to add iOS platform support by invoking a command “ meteor add-platform ios ”. We can add android platform by invoking a command  “ meteor add-platform android ”. Running application on mobile emulator Once we add mobile platform then we can run our application by using real mobile device or emulator. I have added IOS platform to myapp already. Now I am going to ru...

Meteor tutorial - Part I

What is Meteor? Meteor is a complete open source platform for building web and mobile application by using JavaScript. It is a combination of NodeJs, MongoDB and client side JavaScript. Installing meteor Meteor supports windows, linux and Mac operating systems. Invoke below command in terminal for installing meteor in mac operating system. Check below link for installing meteor on other operating systems. http://docs.meteor.com/#/basic/quickstart Creating an application The command “meteor create <<app_name>>” is used for creating new meteor application. I have created an app called “myapp” and will see how we can run the application. Running an application “meteor run” command is used for running meteor application. Internally it start a node js server and by default that will listen 3000 port number. Just make sure you are in project directory (myapp) before invoking run command. ' Other useful meteor commands Meteor provides lot of usefu...