SpringBoot中装配bean到Ioc中

SpringBoot装配 bean到ioc容器中的两种方法。
1:使用@Configuration和@Bean注解,扫描bean和装配bean到ioc容器中。


pic-1590653103739.png

2:使用@Component和@ComponentScan注解,扫描启动类包下及子包下的所有bean并装配到ioc容器中;其中@ComponentScan注解已经包含在启动类的注解上。


pic-1590653103740.png

怎么获取ioc容器中的bean?
答:在启动类上,用ApplicationContext对象来接Application.run(xxx.class,args);


pic-1589440412943.png

posted @ 2020-05-28 16:06  林就远  阅读(572)  评论(0编辑  收藏  举报