一、在接口實現類中,使用到@Autowired 註解,下面是該註解使用的類java
二、Spring@Autowired註解與自動裝配spring
@Autowired顧名思義,就是自動裝配,其做用是爲了消除代碼Java代碼裏面的getter/setter與bean屬性中的property。固然,getter看我的需求,若是私有屬性須要對外提供的話,應當予以保留。函數
這個註解就是spring能夠自動幫你把bean裏面引用的對象的setter/getter方法省略,它會自動幫你set/get。this
其實在啓動spring IoC時,容器自動裝載了一個AutowiredAnnotationBeanPostProcessor後置處理器,當容器掃描到@Autowied、@Resource或@Inject時,就會在IoC容器自動查找須要的bean,並裝配給該對象的屬性指針
三、@Autowired 能夠對成員變量、方法以及構造函數進行註釋。那麼對成員變量和構造函數進行註釋又有什麼區別呢?code
@Autowired和構造方法執行的順序解析對象
先看一段代碼,下面的代碼能運行成功嗎?接口
@Autowired private User user; private String school; public UserAccountServiceImpl(){ this.school = user.getSchool(); }
答案是不能。get
由於Java類會先執行構造方法,而後再給註解了@Autowired 的user注入值,因此在執行構造方法的時候,就會報錯。it
報錯信息可能會像下面:
Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘...‘ defined in file [....class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [...]: Constructor threw exception; nested exception is java.lang.NullPointerException
報錯信息說:建立Bean時出錯,出錯緣由是實例化bean失敗,由於bean時構造方法出錯,在構造方法裏拋出了空指針異常。
解決辦法是,使用構造器注入,以下:
private User user; private String school; @Autowired public UserAccountServiceImpl(User user){ this.user = user; this.school = user.getSchool(); }
能夠看出,使用構造器注入的方法,能夠明確成員變量的加載順序。
PS:Java變量的初始化順序爲:靜態變量或靜態語句塊–>實例變量或初始化語句塊–>構造方法–>@Autowired
@Autowired自己就是單例模式,只會在程序啓動時執行一次,即便不定義final也不會初始化第二次,因此這個final是沒有意義的吧。