From ab8f436b663cbe51c0a7dfa0428833655356a3fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=95=E5=BC=80=E5=AE=87?= <547913250@qq.com> Date: Tue, 31 May 2022 10:49:24 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DFactoryBean=E6=8B=BC?= =?UTF-8?q?=E5=86=99=E9=94=99=E8=AF=AF=20(#122)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Spring整体脉络/16张图解锁Spring的整体脉络.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Spring/Spring整体脉络/16张图解锁Spring的整体脉络.md b/docs/Spring/Spring整体脉络/16张图解锁Spring的整体脉络.md index c82609f..163d525 100644 --- a/docs/Spring/Spring整体脉络/16张图解锁Spring的整体脉络.md +++ b/docs/Spring/Spring整体脉络/16张图解锁Spring的整体脉络.md @@ -132,13 +132,13 @@ FactoryBean ,它本身就是个 Bean,算是小工厂 ,归 BeanFactory 这 相比大工厂 BeanFactory 少了特别多东西,没有严格的 Bean 生命周期流程 😄 -FacotryBean 对象本身也是一个 Bean,是一个小工厂,可以生产另外的 Bean +FactoryBean 对象本身也是一个 Bean,是一个小工厂,可以生产另外的 Bean BeanFactory 是 Spring 容器的根接口,是大工厂,生产各种各样的 Bean beanName 就是正常对象 -“&”+beanName , 获取的是实现了该接口的 FacotryBean 工厂对象 +“&”+beanName , 获取的是实现了该接口的 FactoryBean 工厂对象 大致如下 👇