码迷,mamicode.com
首页 > 编程语言 > 详细

195-如何获取Spring容器中的对象?

时间:2020-05-25 15:55:36      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:strong   new   code   如何   pre   ann   not   spi   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容器中的对象?

标签:strong   new   code   如何   pre   ann   not   spi   spring容器   

原文地址:https://www.cnblogs.com/pogusanqian/p/12956883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!