`
liuyiyou
  • 浏览: 23635 次
  • 性别: Icon_minigender_1
  • 来自: 湖南
社区版块
存档分类
最新评论

第一个Spring程序

    博客分类:
  • ssh
 
阅读更多
第一个spring程序。不是自己写的。
业务处理对象:由IocService类进行模拟,在这个类中只包含一个基本的业务方法display
XML格式的配置文件:在这个配置文件中定义了IocServiceBean,并对其属性-message进行了初始化。
Ioc容器初始化和业务方法调用:这些功能由IocMain类进行实现
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;

public class IocMain {

	public static void main(String[] args) {
		ClassPathResource resource=new ClassPathResource("IoCBeans.xml");
		BeanFactory factory= new XmlBeanFactory(resource);
		
		IoCService service = (IoCService)factory.getBean("iocService");
		service.display();
	}
}

配置文件:
<?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"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="
	http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
	http://www.springframework.org/schema/context
	http://www.springframework.org/schema/context/spring-context-3.0.xsd">
	
	<bean id="iocService" class="com.sort.IoCService">
	  <property name="message">
	    <value>Hello! Ioc Containce</value>
	  </property>
	</bean>
</beans>


package com.sort;

public class IoCService {

	private String message;

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}
	
	public void display(){
		System.out.println(getMessage());
	}
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics