Spring 基于设置函数的依赖注入 当容器调用一个无参的构造函数或一个无参的静态factory方法来初始化你的bean后,通过容器在你的bean上调用设值函数,基于设值函数的DI就完成了. 下面是TextEditor.java: package com.tuorialsponit; public class TextEditor { private SpellChecker spellChecker; public void spellCheck() { spellChecker.checkS