Spring <context:annotation-config> 与<context-component-scan> 的作用
<context:annotation-config> 与<context-component-scan> 的作用
<context:annotation-config> 是用于激活那些已经在spring容器里注册过的bean(无论是通过xml的方式还是通过package sanning的方式)上面的注解。
<context:component-scan>除了具有<context:annotation-config>的功能之外,<context:component-scan>还可以在指定的package下扫描以及注册javabean 。
例子:有三个类 A,B,C,并且B,C的对象被注入到A中.

package com.spring;
public class B {
public B() {
System.out.println("creating bean B: " + this);
}
} package com.spring;
public class C {
public C() {
System.out.println("creating bean C: " + this);
}
} package com.spring2;
import com.spring.B;
import com.spring.C;
public class A {
private B b;
private C c;
public A() {
System.out.println("creating bean A: " + this);
}
public void setBbb(B b) {
System.out.println("setting A.b with " + b);
this.b = b;
}
public void setC(C c) {
System.out.println("setting A.c with " + c);
this.c = c;
}
}

在applicationContext.xml中加入下面的配置 :
<bean id="b"class="com.spring.B"/>
<bean id="c"class="com.spring.C"/>
<bean id="a"class="com.spring2.A">
<property name="b" ref="b"/>
<property name="c" ref="c"/>
</bean>
加载applicationContext.xml配置文件,将得到下面的结果:
creating bean B: com.spring.B@c2ee6
creating bean C: com.spring.C@1e8a1
creating bean A: com.yyy.A@1e1d435
setting A.b with com.spring.B@c2ff5
setting A.c with com.spring.C@1e8a
下面通过注解的方式来简化我们的xml配置文件
首先,我们使用autowire的方式将对象b和c注入到A中:

package com.spring2;
import org.springframework.beans.factory.annotation.Autowired;
import com.spring.B;
import com.spring.C;
public class A {
private B b;
private C c;
public A() {
System.out.println("creating bean A: " + this);
}
@Autowired
public void setB(B b) {
System.out.println("setting A.b with " + b);
this.b = b;
}
@Autowired
public void setC(C c) {
System.out.println("setting A.c with " + c);
this.c = c;
}
}

在applicationContext.xml配置文件中去除属性<property>就简化为下面的样子了
<bean id="b"class="com.spring.B"/>
<bean id="c"class="com.spring.C"/>
<bean id="a"class="com.spring2.A"/>
当我们加载applicationContext.xml配置文件之后,将得到下面的结果:
creating bean B: com.xxx.B@5e5a
creating bean C: com.xxx.C@54a3
creating bean A: com.yyy.A@a3d4
OK, ClassA中显然没有注入属性,结果是错误的的,究竟是因为什么呢?为什么我们的属性没有被注入进去呢?
是因为注解本身并不能够做任何事情,它们只是最基本的组成部分,我们需要能够处理这些注解的处理工具来处理这些注解。
这就是<context:annotation-config> 所做的事情,用于激活那些已经在spring容器里注册过的bean
我们将applicationContext.xml配置文件作如下修改:
<context:annotation-config />
<bean id="b"class="com.spring.B"/>
<bean id="c"class="com.spring.C"/>
<bean id="a"class="com.spring2.A"/>
这回,当我们加载applicationContext.xml配置文件之后,将得到下面的结果:
creating bean B: com.spring.B@178ace
creating bean C: com.spring.C@af0cdld
creating bean A: com.spring2.A@jalfj012
setting A.b with com.spring.B@15663a2
setting A.c with com.spring.C@cd5f8b
和期望的结果一致
但是如果我们将代码作如下修改:

package com.spring;
import org.springframework.stereotype.Component;
@Component
public class B {
public B() {
System.out.println("creating bean B: " + this);
}
} package com.spring;
import org.springframework.stereotype.Component;
@Component
public class C {
public C() {
System.out.println("creating bean C: " + this);
}
} package com.spring2;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.spring.B;
import com.spring.C;
@Component
public class A {
private B b;
private C c;
public A() {
System.out.println("creating bean A: " + this);
}
@Autowired
public void setB(B b) {
System.out.println("setting A.b with " + bbb);
this.b = b;
}
@Autowired
public void setC(C c) {
System.out.println("setting A.ccc with " + c);
this.c = c;
}
}

applicationContext.xml配置文件修改为:
<context:annotation-config />
当我们加载applicationContext.xml配置文件之后,却没有任何输出,这是为什么呢?
那是因为<context:annotation-config />仅能够在已经在已经注册过的bean上面起作用。
对于没有在spring容器中注册的bean,它并不能执行任何操作。
而<context:component-scan>除了具有
<context:annotation-config />的功能之外,还具有自动将带有@component,@service,@Repository等注解的对象注册到spring容器中的功能。
我们将applicationContext.xml配置文件作如下修改:
<context:component-scan base-package="com.spring"/>
当我们加载applicationContext.xml的时候,会得到下面的结果:
creating bean B: com.x.B@1be0f
creating bean C: com.x.C@80d1
这是什么原因呢?
是因为我们仅仅扫描了com.spring包及其子包的类,而class A是在com.spring2包下,所以就扫描不到了
下面我们在applicationContext.xml中把com.spring2也加入进来:
<context:component-scan base-package="com.spring,com.spring2"/>
然后加载applicationContext.xml就会得到下面的结果:
creating bean B: com.spring.B@cd5f8b
creating bean C: com.spring.C@15ac3c9
creating bean A: com.spring2.A@ec4a87
setting A.b with com.spring.B@cd5f8b
setting A.c with com.spring.C@15ac3c9
回头看下我们的applicationContext.xml文件,已经简化为两行context:component-scan了,是不是很简单?
那如果我们在applicationContext.xml手动加上下面的配置,
也就是说既在applicationContext.xml中手动的注册了A的实例对象,同时,通过component-scan去扫描并注册B,C的对象,如下
<context:component-scan base-package="com.spring"/>
<bean id="a"class="com.spring2.A"/>
结果仍是正确的:
creating bean B: com.spring.B@157aa53
creating bean C: com.spring.C@ec4a87
creating bean A: com.spring2.A@1d64c37
setting A.b with com.spring.B@157aa53
setting A.c with com.spring.C@ec4a87
虽然class A并不是通过扫描的方式注册到容器中的 ,
但是<context:component-scan> 所产生的的处理那些注解的处理器工具,会处理所有绑定到容器上面的bean,不管是通过xml手动注册的还是通过scanning扫描注册的。
那么,如果我们通过下面的方式呢?我们既配置了<context:annotation-config />,又配置了<context:component-scan base-package="com.spring" />,它们都具有处理在容器中注册的bean里面的注解的功能。会不会出现重复注入的情况呢?
<context:annotation-config />
<context:component-scan base-package="com.spring"/>
<bean id="a"class="com.spring2.A"/>
不用担心,不会出现的,结果如下:
creating bean B: com.spring.B@157aa
creating bean C: com.spring.C@ec4a8
creating bean A: com.spring2.A@1d64
setting A.bbb with com.spring.B@157a
setting A.ccc with com.spring.C@ec4a
因为<context:annotation-config />和 <context:component-scan>同时存在的时候,前者会被忽略。
也就是那些@autowire,@resource等注入注解只会被注入一次
哪怕是你手动的注册了多个处理器,spring仍然只会处理一次:

<context:annotation-config />
<context:component-scan base-package="com.spring" />
<bean id="a" class="com.spring2.A" />
<bean id="b1" class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" />
<bean id="b2" class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" />
<bean id="b3" class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" />
<bean id="b4" class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" />

结果仍是正确的:
creating bean B: com.spring.B@157aa53
creating bean C: com.spring.C@ec4a87
creating bean A: com.spring2.A@25d2b2
setting A.b with com.spring.B@157aa53
setting A.c with com.spring.C@ec4a87
Spring <context:annotation-config> 与<context-component-scan> 的作用的更多相关文章
- Spring注解详解@Repository、@Component、@Service 和 @Constroller
概述 注释配置相对于 XML 配置具有很多的优势: 它可以充分利用 Java 的反射机制获取类结构信息,这些信息可以有效减少配置的工作.如使用 JPA 注释配置 ORM 映射时,我们就不需要指定 PO ...
- Spring 开启Annotation <context:annotation-config> 和 <context:component-scan>诠释及区别
<context:annotation-config> 和 <context:component-scan>的区别 <context:annotation-config& ...
- spring 2.5.6 错误:Context namespace element 'component-scan' and its parser class [org.springframework.context.annotation.ComponentScanBeanDefinitionParser] are only available on JDK 1.5 and higher
在运行一个第三方公司交付的项目的时候, 出现: Caused by: java.lang.IllegalStateException: Context namespace element 'annot ...
- Spring 配置 Annotation <context:annotation-config> 和 <context:component-scan>标签的诠释及区别
Spring 开启Annotation <context:annotation-config> 和 <context:component-scan>诠释及区别 <cont ...
- (转)Spring开启Annotation<context:annotation-config> 和 <context:component-scan>诠释及区别
转自:https://www.cnblogs.com/leiOOlei/p/3713989.html <context:annotation-config> 和 <context:c ...
- Spring配置之context:annotation与、component-scan以及annotation-driven
spring boot帮助我们隐藏了大量的细节,有些配置spring boot都是开启的,因此当我们查看遗留项目使用spring时候遇见问题一定细心排查 <!-- context:annotat ...
- spring源码分析之<context:component-scan/>vs<annotation-config/>
1.<context:annotation-config/> xsd中说明: <xsd:element name="annotation-config"> ...
- Mingyang.net:org.springframework.context.annotation.ConflictingBeanDefinitionException
org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean ...
- Spring context:component-scan中使用context:include-filter和context:exclude-filter
Spring context:component-scan中使用context:include-filter和context:exclude-filter XML: <?xml version= ...
- 【原创】大叔经验分享(16)Context namespace element 'component-scan' and its parser class [org.springframework.context.annotation.ComponentScanBeanDefinitionParser] are only available on JDK 1.5 and higher
今天尝试运行一个古老的工程,配置好之后编译通过,结果运行时报错: org.springframework.beans.factory.BeanDefinitionStoreException: Une ...
随机推荐
- 【C#】详解C#异常
目录结构: contents structure [+] 异常处理机制 try块 catch块 finally块 自定义异常 CLS异常和非CLS异常 在这篇文章中,笔者会阐述C#中的异常.C#是一门 ...
- 专访图书作者祁宇:C++11让程序更简洁、更现代、更强大
日前CSDN采访了祁宇,请他解读C++11的新标准.C++的现状以及未来的发展前景. CSDN:怎么会想到编写<深入应用C++11:代码优化与工程级应用>这本书的?有没有什么故事可以分享下 ...
- Django基础学习之Cookie 和 Sessions 应用
在Django里面,使用Cookie和Session看起来好像是一样的,使用的方式都是request.COOKIES[XXX]和request.session[XXX],其中XXX是您想要取得的东西的 ...
- 【iCore4 双核心板_FPGA】例程十三:基于SPI的ARM与FPGA通信实验
实验现象: 1.先烧写ARM程序,然后烧写FPGA程序. 2.打开串口精灵,通过串口精灵给ARM发送数据从而给FPGA发送数据 ,会接收到字符HELLO. 3.通过串口精灵发送命令可以控制ARM·LE ...
- Go Revel - Modules(模块)
revel中的模块是一个可以插入到应用中的包, 它允许从第三方引入至应用,并在它和应用之间共享控制器.视图与资源等数据. 一个模块应当具有和revel应用相同的结构."主"程序会以 ...
- Java知多少(75)Object类
Object 类位于 java.lang 包中,是所有 Java 类的祖先,Java 中的每个类都由它扩展而来. 定义Java类时如果没有显示的指明父类,那么就默认继承了 Object 类.例如: p ...
- java-信息安全(十六)-双向认证
原文地址 http://snowolf.iteye.com/blog/510985 对于双向认证,做一个简单的描述. 服务器端下发证书,客户端接受证书.证书带有公钥信息,用于验证服务器端.对数据加密/ ...
- java-信息安全(八)-迪菲-赫尔曼(DH)密钥交换
概述 信息安全基本概念: DH(Diffie–Hellman key exchange,迪菲-赫尔曼密钥交换) DH 是一种安全协议,,一种确保共享KEY安全穿越不安全网络的方法,它是OAKLEY的一 ...
- Scala学习笔记(四):apply方法说明
当scala中类或者对象有一个主要用途的时候,apply方法就是一个很好地语法糖.请看下面一个简单的例子: class Foo(foo: String) {} object Foo { def app ...
- Linux systemd limits
https://www.cnblogs.com/IMxY/p/8941022.html limits 关于Centos 7 / RHEL 7 中的limits要了解以下几点: CentOS 7 / R ...