首页 > 代码库 > spring配置里<context:annotation-config>和<context:component-scan>区别
spring配置里<context:annotation-config>和<context:component-scan>区别
annotation-config处理@autowired之类的注解(共有四类) 前提是注解作用的类已经被注册到spring容器里(bean id=“” class=“”)
component-scan除了包含annotation-config的作用外,还能自动扫描和注册base-package下有@component之类注解的类,将其作为bean注册到spring容器里
所以配置文件如果有component-scan就不需要annotation-config了。
spring配置里<context:annotation-config>和<context:component-scan>区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。