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

Spring学习笔记(6)----编码剖析Spring依赖注入的原理

阅读更多

在Spring学习笔记(3)中剖析了Spring管理Bean的原理,下面解释下Spring依赖注入的原理

在进行依赖注入时,我们的配置文件如下配置:

<?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:context="http://www.springframework.org/schema/context"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
				http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
				http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
	<bean id="mySqlDAO" class="com.szy.spring.dao.UserDAO4MySqlImpl"/>
	<bean id="oracleDAO" class="com.szy.spring.dao.UserDAO4OracleImpl"/>
	<bean id="userService" class="com.szy.spring.service.UserServiceImpl">
		<!--构造方法注入  
			<property name="userDAO" ref="mySqlDAO"></property>
		-->
		<property name="userDAO" ref="oracleDAO"></property>
	</bean>
</beans>

 根据配置文件信息,我们首先需要建立一个Bean类,用来保存bean节点的信息:

package com.szy.spring.bean;

import java.util.List;

public class Bean
{
	private String id;   
    private String className; 
    private List<Property> propertyList;
	public Bean(String id, String className, List<Property> propertyList)
	{
		super();
		this.id = id;
		this.className = className;
		this.propertyList = propertyList;
	}
	public String getId()   
    {   
        return id;   
    }   
    public void setId(String id)   
    {   
        this.id = id;   
    }   
    public String getClassName()   
    {   
        return className;   
    }   
    public void setClassName(String className)   
    {   
        this.className = className;   
    }
	public List<Property> getPropertyList()
	{
		return propertyList;
	}
	public void setPropertyList(List<Property> propertyList)
	{
		this.propertyList = propertyList;
	}   
}

 此外,由于bean下存在property信息,因此我们还需要建立property类

package com.szy.spring.bean;

public class Property
{
	private String name;
	private String ref;
	
	public Property(String name, String ref)
	{
		super();
		this.name = name;
		this.ref = ref;
	}
	public String getName()
	{
		return name;
	}
	public void setName(String name)
	{
		this.name = name;
	}
	public String getRef()
	{
		return ref;
	}
	public void setRef(String ref)
	{
		this.ref = ref;
	}
	
}

 

在Spring学习笔记(3)中,我们在读取xml文件时bean节点下面是不存在property节点的,因此在这里我们需要修改readXML()方法:

/**
	 * 读取xml配置文件
	 * @param fileName 配置文件名
	 */
	private void readXML(String fileName)
	{
		// 寻找配置文件
		URL xmlPath = this.getClass().getClassLoader().getResource(fileName);
		Document doc = null;
		Element root = null;
		try
		{
			SAXBuilder sb = new SAXBuilder(false);
			doc = sb.build(new FileInputStream(new File(xmlPath.toURI())));
			// 设置命名空间   
			Namespace xhtml = Namespace.getNamespace("xhtml",
					"http://www.springframework.org/schema/beans");
			root = doc.getRootElement(); // 获取根元素   
			List<Element> bList = root.getChildren("bean", xhtml); //获取全部bean节点   
			for (Element beanElement : bList)// 遍历节点,取得每个节点的属性   
			{
				String id = beanElement.getAttributeValue("id");
				String className = beanElement.getAttributeValue("class");
				//获得每个bean下面的属性
				List<Element> pList = beanElement
						.getChildren("property", xhtml);
				List<Property> propertyList = new ArrayList<Property>(); //存储属性信息
				if (pList.size() > 0) //如果存在属性
				{
					for (Element propertyElement : pList) //遍历属性节点
					{
						String name = propertyElement.getAttributeValue("name");
						String ref = propertyElement.getAttributeValue("ref");
						Property property = new Property(name, ref);
						propertyList.add(property); //保存属性节点
					}
				}
				Bean bean = new Bean(id, className, propertyList);
				beanList.add(bean);
			}

		} catch (Exception e)
		{
			e.printStackTrace();
		}
	}

 读取完配置文件后我们还是需要对bean进行实例化的,这方法和Spring学习笔记(3)中的instanceBeans()方法一样。下面就是我们需要给bean属性进行注入,实现方法如下:

/**
	 * 为bean对象的属性注入值
	 */
	public void injectObject()
	{
		for (Bean bean : beanList)
		{
			Object object = beanObject.get(bean.getId()); //获取bean的实例
			if (object != null)
			{
				try
				{
					PropertyDescriptor[] ps = Introspector.getBeanInfo(
							object.getClass()).getPropertyDescriptors();  //取得bean的属性描述
					for (Property property : bean.getPropertyList())  //获取bean节点的属性
					{
						for (PropertyDescriptor properdesc : ps)  
						{
							if (property.getName().equals(properdesc.getName()))
							{
								Method setter = properdesc.getWriteMethod();//获取属性的setter方法 ,private
								if (setter != null)
								{
									Object value = beanObject.get(property.getRef());  //取得值
									setter.setAccessible(true);  //设置为允许访问
									setter.invoke(object, value);//把引用对象注入到属性
								}
								break;
							}
						}
					}
				} catch (Exception e)
				{
					e.printStackTrace();
				}
			}
		}

 

我们进行测试:

MyClassPathXMLApplicationContext ctx=new MyClassPathXMLApplicationContext("applicationContext.xml");   
		UserService service=(UserService)ctx.getBean("userService");
		service.show();

 

运行输出

OracleDAO Implement

 上面仅是简单的演示了Spring依赖注入的原理,但是在实际操作中还需要考虑很对其它因素,在此就不进行讨论了。

分享到:
评论

相关推荐

    Spring学习笔记(5)----依赖注入的简单实现

    在Spring框架的学习中,依赖注入(Dependency Injection,简称DI)是一个核心概念,它极大地提高了代码的可测试性和可维护性。本篇笔记将探讨Spring如何实现依赖注入,并通过实例进行详细解析。 首先,理解依赖注入...

    Spring学习笔记+学习源码.zip

    这份"Spring学习笔记+学习源码.zip"资源包含了深入学习Spring及其相关技术的知识点,以及实践代码,对提升Spring技能将大有裨益。 首先,我们来详细讨论Spring框架的主要组件和功能: 1. **依赖注入(Dependency ...

    基于ssm的基于云的学习笔记系统代码 - 基于云的学习笔记系统 - bs - java - ssm - spring -代码

    基于ssm的基于云的学习笔记系统代码 | 基于云的学习笔记系统 | bs | java | ssm | spring | springmvc | mybatis | 代码 | 系统 | 网站 | 毕设 | 项目 1、技术栈:微信小程序,springboot,uniapp,vue,ajax,...

    SpringDM笔记13-OSGi服务注册与引用

    在SpringDM(Spring Dynamic Modules)框架中,OSGi(Open Service Gateway Initiative)服务注册与引用是核心功能之一,它使得模块化系统中的组件能够互相发现并交互。本篇笔记将探讨如何在OSGi环境中注册服务以及...

    Spring学习笔记(13)----动态代理模式分析演示

    在本篇Spring学习笔记中,我们将深入探讨动态代理模式,并结合Spring框架的实现进行分析演示。动态代理模式是Java编程中一种重要的设计模式,它允许我们在不修改原对象代码的情况下,为对象添加额外的功能或行为。...

    Spring 学习笔记《Spring Boot》源码

    在《Spring Boot》源码学习笔记中,我们可以深入理解其内部工作机制,包括自动配置、起步依赖、命令行接口(CLI)以及如何集成各种组件如JSP等。JSP(JavaServer Pages)是一种用于动态创建网页的技术,Spring Boot ...

    spring学习笔记(3.20)

    标题 "spring学习笔记(3.20)" 暗示我们即将探讨的是关于Spring框架的某个特定主题,可能涵盖版本3.20或基于该版本的学习内容。Spring是一个广泛使用的Java企业级应用开发框架,它提供了依赖注入、AOP(面向切面编程...

    Spring学习笔记(12)----静态代理模式分析演示

    在本篇Spring学习笔记中,我们将探讨静态代理模式在Spring框架中的应用与分析。静态代理是一种常见的设计模式,它在不修改目标类代码的情况下,通过代理类来扩展或增强目标类的功能。在Spring中,静态代理主要应用于...

    spring aop 学习笔记

    本学习笔记将深入探讨Spring AOP的核心概念、工作原理以及实际应用。 1. **核心概念** - **切面(Aspect)**:切面是关注点的模块化,包含业务逻辑之外的横切关注点,如日志、事务管理。 - **连接点(Join Point...

    Spring 学习笔记六

    在本篇"Spring 学习笔记六"中,我们将深入探讨Spring框架的核心概念和技术细节,同时结合源码分析,以提升对Spring的理解和应用能力。本文档主要关注Spring的依赖注入(Dependency Injection,DI)机制、AOP(面向切...

    Spring学习笔记之一“why spring”

    标题中的"Spring学习笔记之一“why spring”"表明了这篇笔记主要探讨的是Spring框架的核心价值和使用背景。在IT行业中,Spring是一个广泛使用的Java企业级应用开发框架,它以其依赖注入(Dependency Injection,DI)...

    Spring整合Mybatis与SpringBoot整合Mybatis原理分析

    **Spring整合Mybatis原理分析** 在Java Web开发中,Spring框架以其强大的依赖注入和面向切面编程能力,成为了事实上的核心框架。Mybatis则是一个轻量级的持久层框架,它简化了数据库操作,提供了直观的SQL映射。将...

    Spring 学习笔记一

    依赖注入是 Spring 的核心概念之一,它允许开发者在运行时将对象依赖关系传递给其他对象,而不是在代码中硬编码这些依赖。这使得应用程序更易于测试,因为每个组件都可以独立地进行单元测试,同时也提高了代码的可...

    我的Pro Spring 学习笔记 之二 控制反转(IoC)和依赖注入(DI), Spring初步

    为了进一步学习和实践这些概念,你可以从`src`目录中找到相关的Java类,查看它们如何使用Spring的注解进行配置,以及如何声明和注入依赖。同时,也可以查阅博文链接(已提供)以获取更多理论解释和示例说明。通过...

    图灵Java高级互联网架构师第6期源码框架专题笔记.zip

    图灵Java高级互联网架构师第6期源码框架专题笔记,内容包含: 01-Spring底层核心原理解析-周瑜 02-手写模拟Spring底层原理-周瑜 03-Spring之底层架构核心概念解析-周瑜 04-Spring之Bean生命周期源码解析上-周瑜 05-...

    spring-analysis-master.zip

    1. IoC(Inversion of Control)容器:Spring的核心特性是控制反转,它通过依赖注入(Dependency Injection,DI)来管理对象的生命周期和依赖关系。IoC容器负责创建对象、装配对象以及管理对象的生命周期,降低了...

Global site tag (gtag.js) - Google Analytics