0
点赞
收藏
分享

微信扫一扫

【Nuxt3】使用内置方法获取网络数据和使用场景

艾米吖 03-30 13:30 阅读 1

Spring@Component@Bean 区别

文章目录

1. 用途不同

@Component 用于标识一个普通的类@Bean用于配置类里面,在方法上面声明和配置 Bean 对象

2.使用方式不同

@Component类级别的注解,Spring 可以扫描到配置此注解的这些类并把他们注入到 SpringIOC 容器中,@Bean修饰在方法上的,表示此方法返回一个 Bean 对象注入到 SpringIOC 容器中。

@Component 使用示例

@Component
public class OrderService {
}

但是在spring中通常@Component注解通常要配合@ComponentScan实现注册的功能

@ComponentScan("指定@Component注解所在的包路径")
public class AppConfig {
    
}

@Bean 使用示例

@Configuration
public class AppConfig {
 
    @Bean
    public OrderService orderService1(){
        return new OrderService();
    }
}

@Bean需要在配置类中使用,即类上需要加上@Configuration注解,然后在配置类中使用一个方法定义bean是如何创建的

3. 控制权不同

@Component 修饰的类是由Spring框架 统一管理和创建的,而 @Bean 允许开发人员手动控制 Bean的创建和配置

4. 灵活性不同

@Bean注解比@Component注解灵活,我们可以按需注册需要的bean,很多场景我们只能通过@Bean来注册bean,比如引入第三方库中的类需要装配到spring容器中。

参考文献

  1. Spring中@Component注解和@Bean的区别是什么-CSDN博客

  2. Spring中@Component和@Bean的区别_spring bean和component-CSDN博客

举报

相关推荐

0 条评论