Spring中@Component和@Bean的区别

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容器 不能混为一谈

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

时间: 2024-10-24 05:10:42

Spring中@Component和@Bean的区别的相关文章

【转载】Spring中DispatcherServlet与ContextLoaderListener的区别

昨天在写springmvc的时候,在web.xml中配置了DispatcherServlet,如下: <servlet> <servlet-name>DispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>

Spring中常见的bean创建异常

Spring中常见的bean创建异常 1. 概述     本次我们将讨论在spring中BeanFactory创建bean实例时经常遇到的异常 org.springframework.beans.factory.BeanCreationException,下面我们将讨论并再现这些异常,同时给出解决方案. 2. Cause:org.springframework.beans.factory.NoSuchBeanDefinitionException     到目前为止最常见的导致BeanCreat

Spring中ClassPathXmlApplication与FileSystemXmlApplicationContext的区别

Spring中ClassPathXmlApplication与FileSystemXmlApplicationContext的区别 一.概述 在项目中遇到加载不到Spring配置文件,简单分析后,写此文备忘! 二.测试所需资源 TestBean.java public class TestBean { public TestBean(){ System.out.println(this.getClass().getName().concat(" init !")); } public

Spring中Adivisor和Aspect的区别(自我理解)

在AOP中有几个概念: - 方/切 面(Aspect):一个关注点的模块化,这个关注点实现可能另外横切多个对象.事务管理是J2EE应用中一个很好的横切关注点例子.方面用Spring的Advisor或拦截器实现. - 连接点/织入点(Joinpoint):程序执行过程中明确的点,如方法的调用或特定的异常被抛出. - 通知(Advice):在特定的连接点,AOP框架执行的动作.各种类型的通知包括"around"."before"和"throws"通知

Spring 中 ApplicationContext 和 BeanFactory 的区别,以及 Spring bean 作用域

//从ApplicationContext 中取 bean ApplicationContext ac = new ClassPathXmlApplicationContext ( "com/hsp/beans.xml" ) ; ac.getBean("beanId"); 当我们去实例化beans.xml,该文件中配置的 bean 就被实例化(不论你用还是不用,bean对象都在那),而且该对象是singleton单例的.(每个bean都有scope属性,可以人为的设

Spring中BeanFactory与FactoryBean的区别

在Spring中有BeanFactory和FactoryBean这2个接口,从名字来看很相似,比较容易搞混. 一.BeanFactory BeanFactory是一个接口,它是Spring中工厂的顶层规范,是SpringIoc容器的核心接口,它定义了getBean().containsBean()等管理Bean的通用方法.Spring的容器都是它的具体实现如: DefaultListableBeanFactory XmlBeanFactory ApplicationContext 这些实现类又从

Spring中@Component注解,@Controller注解详解(网摘)

在使用Spring的过程中,为了避免大量使用Bean注入的Xml配置文件,我们会采用Spring提供的自动扫描注入的方式, 只需要添加几行自动注入的的配置,便可以完成Service层,Controller层等等的注入配置. 使用过程中,在Service层中的实现类头上加@Compopnet注解,在Controller类头加@Controller注解,便完成了配置. 例如 在Controller中当我们调用某个Service时就不需要Set方法了,直接通过@Autowried 注解对Service

@Component 和 @Bean 的区别

觉得这个很不错, 所以自己留着以后备用原文出处: https://blog.csdn.net/qq_38534144/article/details/82414201Spring帮助我们管理Bean分为两个部分,一个是注册Bean,一个装配Bean.完成这两个动作有三种方式,一种是使用自动配置的方式.一种是使用JavaConfig的方式,一种就是使用XML配置的方式. @Compent 作用就相当于 XML配置 @Component public class Student { private

spring中自动装配bean

首先用@Component注解类: package soundsystem: import org.springframework.stereotype.Component; @Component public class TestBean{ …… } 开启组件扫描spring才能自动装配bean,创建一个@ComponentScan注解的类 package soundsystem: import org.springframework.context.annotation.componentS