1、两者的联系和区别
@Component 和 @Bean 是两种使用注解来定义bean的方式。
@Component
(和@Service
和@Repository
)用于自动检测和使用类路径扫描自动配置bean。注释类和bean之间存在隐式的一对一映射(即每个类一个bean)。
这种方法对需要进行逻辑处理的控制非常有限,因为它纯粹是声明性的。
@Bean
用于显式声明单个bean,而不是让Spring像上面那样自动执行它。它将bean的声明与类定义分离,并允许您精确地创建和配置bean。
@Component public class Student { private String name = "lkm"; public String getName() { return name; } public void setName(String name) { this.name = name; } }
而@Bean则常和@Configuration注解搭配使用
@Configuration public class WebSocketConfig { @Bean public Student student(){ return new Student(); } }
都可以使用@Autowired或者@Resource注解注入
@Autowired
Student student;