SpringBoot中获取Bean对象
下面这段代码在测试类中进行,下面通过三种方式获取bean对象。
import org.springframework.context.ApplicationContext;// 注意一定要引入上面的依赖@SpringBootTest
class TliasWebManagementApplicationTests {@Testvoid getBeanTest(){DeptController bean1 = (DeptController) applicationContext.getBean("deptController");System.out.println(bean1);DeptController bean2 = applicationContext.getBean(DeptController.class);System.out.println(bean2);DeptController bean3 = applicationContext.getBean("deptController",DeptController.class);System.out.println(bean3);}
输出如下,这三个Bean对象结果都是一样的。
我们调用了三次,但是发现获取的是一个实例对象:因为在springboot中Bean对象默认是单例的。
SpringBoot作用域
一般情况下,默认Springbean对象为singleton的,而设置prototype后,每次都会创建新的bean对象.
通过@Scope设置新的作用域。
还是执行上面的代码,发现Bean的名称不一样了。
第三方Bean对象
如果要管理的Bean对象来自第三方(不是自定义的)是无法使用@Component以及衍生注解来声明bean的,这时就需要使用到@Bean注解;若要管理第三方bean对象,可以对这些bean对象进行集中配置,通过@Configuration注解声明一个配置类。