SpringMVC 之 @Autowired 註釋使用說明

    Spring 經過一個 BeanPostProcessor 對 @Autowired 進行解析,因此要讓 @Autowired 起做用必須事先在 Spring 容器中聲明 AutowiredAnnotationBeanPostProcessor Bean。
    <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>
    當 Spring 容器啓動時,AutowiredAnnotationBeanPostProcessor 將掃描容器中的全部 Bean,若是發現 Bean 中存在 @Autowired 註釋,就會尋找和其匹配的 Bean 注入。Bean 中使用了 @Autowired 註釋的變量,再也不須要 setter 方法。

spring

相關文章
相關標籤/搜索