Spring 基于设置函数的依赖注入 当容器调用一个无参的构造函数或一个无参的静态factory方法来初始化你的bean后,通过容器在你的bean上调用设值函数,基于设值函数的DI就完成了. 下面是TextEditor.java: package com.tuorialsponit; public class TextEditor { private SpellChecker spellChecker; public void spellCheck() { spellChecker.checkS…
基于构造函数的依赖注入 我们知道,bean标签中指定的类会进行初始化,这个初始化过程中自然会调用构造函数,那我们也可以利用这个构造函数完成依赖注入. 先创建一个类: public class TextEditor { public TextEditor(SpellChecker spellChecker) { System.out.println("TextEditor的构造函数"); } public TextEditor(String s) { System.out.println…
本系列目录: Spring IOC(一)概览 Spring IOC(二)容器初始化 Spring IOC(三)依赖注入 Spring IOC(四)总结 目录 1.AbstractBeanFactory设计类图 2.模拟容器获取Bean,源码剖析 3.总结 =====正文分割线============= 前面一章讲解的高级容器ApplicationContext的接口设计和ClassPathXmlApplicationContext实现类从xml文件中载入bean的过程,其它实现类大同小异. 光生…