您的位置:首页 > 科技 > 能源 > 品牌策划公司简介_web课程设计题目大全_百度收录入口_公司快速建站

品牌策划公司简介_web课程设计题目大全_百度收录入口_公司快速建站

2025/1/20 22:43:19 来源:https://blog.csdn.net/weixin_42682872/article/details/144855288  浏览:    关键词:品牌策划公司简介_web课程设计题目大全_百度收录入口_公司快速建站
品牌策划公司简介_web课程设计题目大全_百度收录入口_公司快速建站
需要掌握
拿到容器中的 
实例这个可以debug IOC容器
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
public class RuoYiApplication {public static void main(String[] args) throws NoSuchFieldException, IllegalAccessException {// System.setProperty("spring.devtools.restart.enabled", "false");ConfigurableApplicationContext context = SpringApplication.run(RuoYiApplication.class, args);//这个可以debug IOC容器System.out.println(context);//拿到容器中的 实例Field singletonObjects = DefaultSingletonBeanRegistry.class.getDeclaredField("singletonObjects");singletonObjects.setAccessible(true);ConfigurableListableBeanFactory beanFactory = context.getBeanFactory();Map<String, Object> map = (Map<String, Object>) singletonObjects.get(beanFactory);map.entrySet().stream().forEach(s -> {System.out.println(s.getKey() + " ===> " + s.getValue());});}
}

总结:

beanFactory 不仅仅是一个工厂

它的实现类、接口有提供很多的功能。

主要是:控制反转、依赖注入、bean的生命周期等功能

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com