1. 程式人生 > >spring中註解和xml混合使用

spring中註解和xml混合使用

註解和xml混合使用

步驟:

1.將所有的bean都配置xml中

       <beanid="" class="">

2.將所有的依賴都使用註解

       @Autowired

       預設不生效。為了生效,需要在xml配置:<context:annotation-config>

總結:

註解1:<context:component-scanbase-package=" ">

註解2:<context:annotation-config>

1.一般情況兩個註解不一起使用。

2. “註解1”掃描含有註解(@Component等)類,注入註解自動生效。

       “註解2”只在xml和註解(注入)混合使用時,使注入註解生效。