SpringBoot中装配bean到Ioc中
SpringBoot装配 bean到ioc容器中的两种方法。
1:使用@Configuration和@Bean注解,扫描bean和装配bean到ioc容器中。
2:使用@Component和@ComponentScan注解,扫描启动类包下及子包下的所有bean并装配到ioc容器中;其中@ComponentScan注解已经包含在启动类的注解上。
怎么获取ioc容器中的bean?
答:在启动类上,用ApplicationContext对象来接Application.run(xxx.class,args);