Spring快速入门示例

开发环境:

Spring 4.0.0+Myeclipse10+JDK1.7

开发过程:

1、新建一个spring01的java工程,在工程目录下新建一个lib包(或者直接建一个web工程,两个方法均可),将以下包导入到lib中
Spring快速入门示例_第1张图片

2、创建com.at.beans包,在包中创建HelloWorld.java类。
package com.at.beans;

public class HelloWorld {

	private String name;

	public void setName(String name) {
		this.name = name;
	}
	
	public void hello(){
		System.out.println("name " + name);
	}
}

3、 在src文件夹下面新建一个applicationContext.xml文件。



	
	
		
	



4、测试运行结果代码。
package com.at.beans;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestHelloWorld {

	public static void main(String[] args) {
		
		//1、创建spring的IOC容器对象
		ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
		
		//2、从IOC容器中获取bean实例
		HelloWorld helloWorld=(HelloWorld)context.getBean("helloWorld");
		
		//3、调用方法
		helloWorld.hello();
	}
}

5、程序运行结果输出。
五月 17, 2017 4:19:32 下午 org.springframework.context.support.AbstractApplicationContext prepareRefresh
信息: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@5a874bd3: startup date [Wed May 17 16:19:32 CST 2017]; root of context hierarchy
五月 17, 2017 4:19:32 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from class path resource [applicationContext.xml]
name spring


By luoyepiaoxue2014
微博地址: http://weibo.com/luoyepiaoxue2014  点击打开链接

你可能感兴趣的:(Spring)