码迷,mamicode.com
首页 > 编程语言 > 详细

Spring中@Component和@Bean的区别

时间:2019-11-04 11:38:11      阅读:806      评论:0      收藏:0      [点我收藏+]

标签:说明   config   表示   三方   exp   因此   例子   ice   contex   

Spring 管理Bean的方式

Spring管理Bean分为两个部分,一个是注册Bean,一个装配Bean。

完成这两个动作有三种方式,一种是使用自动配置的方式、一种是使用JavaConfig的方式,一种就是使用XML配置的方式。

@Component 把普通pojo实例化到spring容器中

@Bean 需要在配置类中使用,即类上需要加上@Configuration注解

两者都能通过@Autowired注解自动装配


@Compent和@Bean到底区别在哪?

在应用开发的过程中,如果想要将第三方库中的组件装配到你的应用中,在这种情况下,是没有办法在它的类上添加@Component和@Autowired注解的,因此就不能使用自动化装配的方案了。

但是可以通过xml 或者在@Configuration配置类中通过@Bean进行配置

@Component来表示一个通用注释,用于说明一个类是一个spring容器管理的类(再通俗易懂一点就是将要实例化的类丢到Spring容器中去)。

@Component的范围比较广,所有类都可以进行注解;

而@Configuration注解一般注解在类里面有@Value注解的成员变量或@Bean注解的方法,@Bean主要和@Configuration配合使用的


说到@Component注解就会想到@Controller,@Service, @Repository

@Component (把普通pojo实例化到spring容器中,相当于配置文件中的<bean id="" class=""/>)

@Controller用于标注控制层组件

@Service 用于标注业务层组件

@Repository 用于标注数据访问组件

通过@Controller,@Service, @Repository这三个注解的源码可知

@Controller,@Service, @Repository实际上都包含了@Component

而这三个注解比@Component带有更多的语义,它们分别对应了控制层、服务层、持久层的类。

举一个小例子 

在SSM整合的时候 我们通常是这样配置

spring-application.xml中

<context:component-scan base-package="com.esummer">
    <!-- 扫描注解时忽略 @Controller注解 -->
    <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller" />
</context:component-scan>

spring-mvc.xml中 

<context:component-scan base-package ="com.esummer">
   <!-- 只扫描 @Controller注解 -->
   <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>

这样 spring-application.xml文件中的扫描到除@Controller注解外的Bean 就交给Spring容器去管理

而spring-mvc.xml文件中扫描到的带有@Controller注解的bean 交给SpringMvc容器去管理

注: Spring 容器和SpringMVC容器 不能混为一谈

Spring中@Component和@Bean的区别

标签:说明   config   表示   三方   exp   因此   例子   ice   contex   

原文地址:https://www.cnblogs.com/Esummer/p/11791009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!