Spring中@Component与@Bean的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring中@Component与@Bean的区别相关的知识,希望对你有一定的参考价值。

参考技术A 最近翻了一下Spring In Action,看完前三章发现@Bean和@Component用得挺多,不过对这两者的区别不是很清楚,书中也没有详细介绍。

Google了一下,发现一篇文章写得不错,不过是纯英文的: http://www.tomaszezula.com/2014/02/09/spring-series-part-5-component-vs-bean/

下面是看过上面文章之后自己的一些理解:

首先我们看看这两个注解的作用:

两者的目的是一样的,都是注册bean到Spring容器中。

@Component(@Controller、@Service、@Repository)通常是通过类路径扫描来自动侦测以及自动装配到Spring容器中。

而@Bean注解通常是我们在标有该注解的方法中定义产生这个bean的逻辑。

举个栗子:

而@Bean的用途则更加灵活

当我们引用第三方库中的类需要装配到Spring容器时,则只能通过@Bean来实现

举个例子:

再举个只能用@Bean的例子:

以上这个例子是无法用Component以及其具体实现注解(Controller、Service、Repository)来实现的。

总结:@Component和@Bean都是用来注册Bean并装配到Spring容器中,但是Bean比Component的自定义性更强。可以实现一些Component实现不了的自定义加载类。

以上是关于Spring中@Component与@Bean的区别的主要内容,如果未能解决你的问题,请参考以下文章

java spring component与autowire区别

Spring@Bean 与 @Component 用在同一个类上,会怎么样?

httpservlert 的init 方法与initializingbean的afterpropertiesset有啥显微的区

Spring:无法使用@Component 和@Bean 获取bean

Spring中@Component和@Bean的区别

面试必问|Spring @bean 和 @component 注解有什么区别?