码迷,mamicode.com
首页 > Web开发 > 详细

<mvc:annotation-driven/>、<context:component-scan base-package=""/>、<context:annotation-config/>的用法

时间:2015-01-11 17:52:23      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:mvcannotation-driven   contextcomponent-sca   contextannotation-co   

      在Spring中<context:annotation-config/>表示在自动装配时,我们可以使用注解的方式 例如:@Autowired,但是此时在xml文件中仍需要bean配置,只不过此时代替了bean的property

        <context:component-scan base-package=""/>表示扫描指定的包,将注解的类注册为spring容器中的bean,那么此时我们在xml文件中就不需要定义bean,实现xml文件的零配置

     <mvc:annotation-driven/>表示在SpringMVC中注册了DefaultAnnotationHandlerMapping与AnnotationMethodHandlerAdapter 两个bean,表示为@controller、@requestMapping做好准备工作,但是 此时被注解的bean并没有被加入到spring容器中,此时需要用<context:component-scan base-package=""/>扫描并注册bean,因此我们在SpringMVC中出现将<mvc:annotation-driven/>、<context:component-scan base-package=""/>一起使用。


<mvc:annotation-driven/>、<context:component-scan base-package=""/>、<context:annotation-config/>的用法

标签:mvcannotation-driven   contextcomponent-sca   contextannotation-co   

原文地址:http://blog.csdn.net/u013516966/article/details/42611913

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