pring4.0入门

pring4.0入门_第1张图片

/**
 * Project Name:spring-1
 * File Name:Main.java
 * Package Name:cn.com.ylpw.spring.beans
 * Date:2016年2月24日下午2:02:22
 * Copyright (c) 2016, [email protected] All Rights Reserved.
 *
*/

package cn.com.ylpw.spring.beans;

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

/**
 * ClassName:Main <br/>
 * Function: TODO ADD FUNCTION. <br/>
 * Reason:	 TODO ADD REASON. <br/>
 * Date:     2016年2月24日 下午2:02:22 <br/>
 * @author   lenovo
 * @version  
 * @see 	 
 */
public class Main {
	
	public static void main(String [] args){
//		HelloWorld helloWord = new HelloWorld();
//		helloWord.setName("哈哈");
//		helloWord.hello();
		//1.创建Spring的IOC容器对象、
		ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
		//2.从IOC容器中获取Bean实例
		HelloWorld helloWorld = (HelloWorld) ctx.getBean("helloWord");
		//3.调用hello方法
		helloWorld.hello();
	}
}
/**
 * Project Name:spring-1
 * File Name:HellowWorld.java
 * Package Name:cn.com.ylpw.spring.beans
 * Date:2016年2月24日下午1:58:28
 * Copyright (c) 2016, [email protected] All Rights Reserved.
 *
*/

package cn.com.ylpw.spring.beans;
/**
 * ClassName:HellowWorld <br/>
 * Function: TODO ADD FUNCTION. <br/>
 * Reason:	 TODO ADD REASON. <br/>
 * Date:     2016年2月24日 下午1:58:28 <br/>
 * @author   lenovo
 * @version  
 * @see 	 
 */
public class HelloWorld {
	
	private String name;
	
	public void setName2(String name){
		this.name = name ;
	}
	
	public void  hello(){
		System.out.println("hello : " + name);
	}
}
配置文件:
<?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配置 -->
	<bean id="helloWord" class="cn.com.ylpw.spring.beans.HelloWorld">
		<property name="name2" value="spring"></property>
	</bean>
</beans>


你可能感兴趣的:(pring4.0入门)