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

Spring <context:annotation-config> 和 <context:component-scan> 区别

时间:2018-09-08 23:36:13      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:处理工具   tps   href   www.   ota   get   容器   not   spring容器   

      https://www.cnblogs.com/leiOOlei/p/3713989.html

 

说白了 :<context:component-scan> 包含了 <context:annotation-config> 的作用;

 

 <context:annotation-config> 就是开启注解的作用,就是来处理@AutoWrized @Resource 注解的,干巴巴的注解放到哪里,是没什么作用的 ,<context:annotation-config> 就是将

这些注解赋予了生命,生命就是我们spring 注册的bean

  注解本身并不能够做任何事情,它们只是最基本的组成部分,我们需要能够处理这些注解的处理工具来处理这些注解。

    这就是<context:annotation-config> 所做的事情

 

<context:component-scan> 它不仅包含了<context:annotation-config> 的作用,还具有自动将带有@component,@service,@Repository等注解的对象注册到spring容器中的功能。

 

在开发中,我们常用的就是 <context:component-scan> 了

 

Spring <context:annotation-config> 和 <context:component-scan> 区别

标签:处理工具   tps   href   www.   ota   get   容器   not   spring容器   

原文地址:https://www.cnblogs.com/iscys/p/9610858.html

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