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容器中的对象?的主要内容,如果未能解决你的问题,请参考以下文章

如何获取容器中的bean对象

获取Spring容器Bean对象工具类

在spring如何获取request 对象

如何从片段中的 JSON 响应中的对象获取数据

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

多线程中使用spring容器中的对象