SprintBoot Bean管理

SpringBoot中获取Bean对象

SprintBoot Bean管理_第1张图片

下面这段代码在测试类中进行,下面通过三种方式获取bean对象。

import org.springframework.context.ApplicationContext;

// 注意一定要引入上面的依赖

@SpringBootTest
class TliasWebManagementApplicationTests {

    @Test
    void 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对象结果都是一样的。
SprintBoot Bean管理_第2张图片
我们调用了三次,但是发现获取的是一个实例对象:因为在springboot中Bean对象默认是单例的。

SpringBoot作用域

SprintBoot Bean管理_第3张图片
一般情况下,默认Springbean对象为singleton的,而设置prototype后,每次都会创建新的bean对象.
通过@Scope设置新的作用域。
SprintBoot Bean管理_第4张图片
还是执行上面的代码,发现Bean的名称不一样了。

SprintBoot Bean管理_第5张图片
SprintBoot Bean管理_第6张图片

第三方Bean对象

如果要管理的Bean对象来自第三方(不是自定义的)是无法使用@Component以及衍生注解来声明bean的,这时就需要使用到@Bean注解;若要管理第三方bean对象,可以对这些bean对象进行集中配置,通过@Configuration注解声明一个配置类。

SprintBoot Bean管理_第7张图片

你可能感兴趣的:(JAVA后端,spring,boot,java,spring)