Spring 中 @Component 和 @Bean 区别

Spring@Component@Bean 区别

文章目录

  • [`Spring` 中 `@Component` 和 `@Bean` 区别](#Spring@Component@Bean 区别)

1. 用途不同

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

Tips

  1. @Component 会告诉 Spring,由 @Component 所修饰的类会被作为组件类,同时 Spring 要为这个类创建 Bean
  2. 告知spring这个方法会返回一个对象,这个对象需要注册为Spring上下文(ApplicationContext)中的bean,通常方法体包含了最终产生 bean 实例的逻辑

2.使用方式不同

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

Tips:但是都能够在 Spring 中注册Bean对象

@Component 使用示例

Java 复制代码
@Component
public class OrderService {
}

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

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

@Bean 使用示例

java 复制代码
@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博客

相关推荐
戴誉杰6 分钟前
idea 2025.2 重置试用30天,无限期使用
java·ide·intellij-idea
小坏讲微服务19 分钟前
Spring Cloud Alibaba 2025.0.0 整合 ELK 实现日志
运维·后端·elk·spring cloud·jenkins
IT_陈寒31 分钟前
JavaScript性能优化:10个V8引擎隐藏技巧让你的代码快30%
前端·人工智能·后端
rannn_11141 分钟前
【Javaweb学习|黑马笔记|Day5】Web后端基础|java操作数据库
数据库·后端·学习·javaweb
无限进步_41 分钟前
C语言atoi函数实现详解:从基础到优化
c语言·开发语言·c++·git·后端·github·visual studio
q***78781 小时前
Spring学习——新建module模块
java·学习·spring
学历真的很重要1 小时前
PyTorch 零基础入门:从张量到 GPU 加速完全指南
人工智能·pytorch·后端·深度学习·语言模型·职场和发展
Python私教1 小时前
fasttushare 技术架构设计
后端
q***11651 小时前
在Nginx上配置并开启WebDAV服务的完整指南
java·运维·nginx
是店小二呀1 小时前
使用Rust构建一个完整的DeepSeekWeb聊天应用
开发语言·后端·rust