码迷,mamicode.com
首页 > 编程语言 > 详细

MyEclipse Spring 学习总结一 Spring IOC容器

时间:2016-02-02 14:51:32      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

一、Spring IOC容器---- Spring AllicationContext容器

程序的结构如下:

技术分享

1.首先在MyEclipse 创建创建Java Project

2.创建好后,添加sping支持。在project上右击, MyEclipse->Add spring Capabilities.

3.之后会自动生成applicationContent.xml文件

 1)创建HelloWorld.java

public class HelloWorld {

	private String message;
	   public void setMessage(String message){
	      this.message  = message;
	   }
	   public void getMessage(){
	      System.out.println("Your Message : " + message);
	   }
}

2)创建MainApp.java

public class MainApp {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		ApplicationContext context = 
				new ClassPathXmlApplicationContext("applicationContext.xml");
		HelloWorld obj = (HelloWorld)context.getBean("helloWorld");
		obj.getMessage();

	}

}

 3)在applicationContent.xml文件配置如下:

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

	<bean id="helloWorld" class="bu.example.com.HelloWorld">
		<property name="message" value="Hello World!!!" />
	</bean>
</beans>

4.最后运行,结果如下:

技术分享  

 

 二、Spring IOC容器---- Spring BeanFactory容器

只需修改MainApp.java文件

public static void main(String[] args) {
		XmlBeanFactory factory = new XmlBeanFactory(new ClassPathResource("applicationContext.xml"));
		HelloWorld obj = (HelloWorld)factory.getBean("helloWorld");
		obj.getMessage();

	}

 两个输出的效果是一样的。 

 

MyEclipse Spring 学习总结一 Spring IOC容器

标签:

原文地址:http://www.cnblogs.com/linlf03/p/5177045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!