其他分享
首页 > 其他分享> > Spring注解中@Configuration、@Component、@Bean傻傻分不清

Spring注解中@Configuration、@Component、@Bean傻傻分不清

作者:互联网

Spring注解中@Configuration、@Component、@Bean傻傻分不清

文章目录

 


前言

嗨,大家好,我是希留。

近日,公司里一位实习的同事在看项目代码时发现有的类使用的是@Configuration注解,有的类使用的是@Component注解,有的地方使用的是@Bean注解,有的又是使用的@Autowire注解,这些不都是注册成bean组件的注解吗,有什么区别呢?

所以这篇文章就来盘点一下,spring中常用的注解,以及区别。


一、将一个类声明为 Spring 的 bean 的注解有哪些?

二、@Component 和 @Configuration 注解的区别是什么?

这两个注解都是配置类注解,作用于类上,申明该类为组件。不同之处在于:
1、@Component是一个元注解,可以注解其他类注解。@Configuration注解里面也是被@Component注解修饰的。

2、bean设置的类属性不同。

3、返回bean实例不同。

代码如下(示例):
一个java类

/**
 * @author 希留
 * @description 普通的java类
 * @date 2022/2/22
 */
@Data
public class Hello {
    
    private String name;
}

@Configuration 注解类

/**
 * @author 希留
 * @description 使用 @Configuration 注解
 * @date 2022/2/22
 */
@Configuration 
public class MyConfig {

    @Bean
    public Hello hello(){
        return new Hello();
    }
}

@Component 注解类

/**
 * @author 希留
 * @description 使用 @Component 注解。
 * @date 2022/2/22
 */
@Component
public class MyComponent {

    @Bean
    public Hello hello(){
        return new Hello();
    }
}

测试类

public class Test {

    public static void main(String[] args) {
        // 创建和初始化容器
        AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
        // ① 我们直接从容器中拿出 hello 对象
        System.out.println(context.getBean("hello", Hello.class));
        MyConfig myConfig = context.getBean("myConfig", MyConfig.class);
        // ② 通过调用 config 对象中的 hello() 获取 hello 对象
        System.out.println(myConfig.hello());

        AnnotationConfigApplicationContext contextCom = new AnnotationConfigApplicationContext(MyComponent.class);
        // ① 我们直接从容器中拿出 hello 对象
        System.out.println(contextCom.getBean("hello", Hello.class));
        MyComponent myComponent = contextCom.getBean("myComponent", MyComponent.class);
        // ② 通过调用 component 对象中的 hello() 获取 hello 对象
        System.out.println(myComponent.hello());
    }

}

执行结果:可以看到@Configuration注解返回的bean对象是同一个对象,@Component注解返回的是不同的对象。
在这里插入图片描述

三、@Autowire 和 @Resource 注解的区别是什么?

1、@Autowire是Spring提供的,@Resource是J2EE提供的;

2、@Autowire 默认按类型装配,默认情况下必须要求依赖对象必须存在,如果要允许 null 值,可以设置它的 required 属性为 false。

3、@Resource 默认按名称装配,当找不到与名称匹配的 bean 时才按照类型进行装配。名称可以通过 name 属性指定,如果没有指定 name 属性,当注解写在字段上时,默认取字段名,当注解写在 setter 方法上时,默认取属性名进行装配。

四、@Qualifier 和 @Primary 注解的区别是什么?

当你一个接口的实现类有多个的时候,你通过@Component来注册你的实现类有多个,但是在注入的时候使用@Autowired注解,那么问题就来了,Spring就不知道你注入哪个,那现在就可以通过下面两个注解解决。

值得注意的是,@Qualifier注解配合@Autowired注解一起使用,@Primary注解配合@Bean或者@Component注解一起使用,如果 @Qualifier 和 @Primary 注释都存在,那么 @Qualifier 注释将具有优先权,基本上,@Primary 是定义了默认值,而 @Qualifier 则非常具体。

@Qualifier注解使用代码如下:

    @Autowired
    @Qualifier("stringRedisTemplate")
    private RedisTemplate<String, String> redisTemplate;

@Primary注解使用代码如下:

    @Bean
    @Primary
    public Employee johnEmployee() {
        return new Employee("john");
    }
 

总结

以上就是本文的主要内容了,感谢大家的阅读,欢迎在评论区留言交流~

  来源:https://blog.csdn.net/qq_30859353/article/details/120151243

标签:Spring,Component,class,Bean,注解,Configuration,hello
来源: https://www.cnblogs.com/konglxblog/p/16441424.html