首先是回顧一下spring的基本知識
1、@controller 控制器(注入服務)
2、@service 服務(注入dao)
3、@repository dao(實現dao訪問)
4、@component (把普通pojo實例化到spring容器中,相當于配置文件中的<bean id="" class=""/>)
? @Component,@Service,@Controller,@Repository注解的類,并把這些類納入進spring容器中管理。?
下面寫這個是引入component的掃描組件?
<context:component-scan base-package=”com.mmnc”>????
其中base-package為需要掃描的包(含所有子包)?
?????? 1、@Service用于標注業務層組件?
?????? 2、@Controller用于標注控制層組件(如struts中的action)?
?????? 3、@Repository用于標注數據訪問組件,即DAO接口的實現類
?????? 4、@Component泛指組件,當組件不好歸類的時候,我們可以使用這個注解進行標注。 ? ?
轉載于:https://www.cnblogs.com/bravolove/p/5029238.html