<bean>的创建
scope = “singleton” 加载配置文件 ,创建spring容器时创建,只要spring容器存在,对象就一直存在
scope = “prototype ” 创建时机是每次getbean时创建一个对象,只要对象一直被使用,对像就一直存在,当对象长时间不使用就会被java回收机制销毁。
Bean实例化三种方式
无参构造方法实例化
工厂静态方法实例化
工厂实例方法实例化
搜索
复制
标签:容器,对象,创建,配置,bean,实例,spring,scope
来源: https://www.cnblogs.com/bianchengact/p/16501437.html