195-如何获取Spring容器中的对象?
2021-01-11 16:32
标签:strong new code 如何 pre ann not spi spring容器 195-如何获取Spring容器中的对象? 标签:strong new code 如何 pre ann not spi spring容器 原文地址:https://www.cnblogs.com/pogusanqian/p/12956883.html 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容器中的对象?
文章链接:http://soscw.com/index.php/essay/41369.html