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

Spring DI基础实例解析

时间:2014-06-17 22:29:58      阅读:362      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

1.        在程序中提供需要依赖Spring为其注入属性的属性名和类型

package com.hao947.ioc;

public class UserService {
	private String name;
	private String year;
	public void setName(String name) {
		this.name = name;
	}
	public void setYear(String year) {
		this.year = year;
	}
	public void show() {
		System.out.println("show...." + name + "," + year);
	}
}

2.        提供该属性的setter方法(标准封装的setter方法)

3.       spring中初始化该资源Bean时为其提供资源的值

<?xml version="1.0" encoding="UTF-8"?>
<!-- 整个Spring文件根元素就是beans -->
<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-3.1.xsd">
	<!-- 此处及用Bean元素来定义Spring能创建的对象 -->
	<bean id="userService" class="com.hao947.ioc.UserService">
		<!-- 为该Bean提供资源 -->
		<property name="name" value="hao947"></property>
		<property name="year" value="2014"></property>
	</bean>

</beans>

4.调试

public class IoCApp {
	@Test
	public void hao947() {
		// 获取Bean需要使用Spring的工厂类
		ApplicationContext act = new ClassPathXmlApplicationContext(
				"applicatioContext.xml");
		// 获取Bean
		UserService us = (UserService) act.getBean("userService");
		// 执行操作
		us.show();
		System.out.println(us);
	}
}


Spring DI基础实例解析,布布扣,bubuko.com

Spring DI基础实例解析

标签:style   class   blog   code   java   http   

原文地址:http://blog.csdn.net/hao947_hao947/article/details/31391755

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