195-如何获取Spring容器中的对象?
Posted 认识世界,接受世界
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了195-如何获取Spring容器中的对象?相关的知识,希望对你有一定的参考价值。
1)SpringBoot框架获取容器中的对象
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(Config.class);
RestTemplate bean = (RestTemplate) context.getBean("restTemplate");
2)Spirng框架如何获取容器中的对象呢?
ApplicationContext context = new ClassPathXmlApplicationContext("application.xml")
RestTemplate bean = (RestTemplate) context.getBean("restTemplate");
以上是关于195-如何获取Spring容器中的对象?的主要内容,如果未能解决你的问题,请参考以下文章
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段