Spring註解使用和與配置文件的關係

 

Spring註解使用和與配置文件的關係spring

註解概述與容器管理機制

Spring 2.5 中除了提供 @Component 註釋外,還定義了幾個擁有特殊語義的註釋,它們分別是:@Repository、@Service 和 @Controller。在目前的 Spring 版本中,這 3 個註釋和 @Component 是等效的,可是從註解類的命名上,很容易看出這 3 個註解分別與持久層、業務層和控制層(Web 層)相對應。雖然目前這 3 個註釋和 @Component 相比沒有什麼新意,但 Spring 將在之後的版本中爲它們添加特殊的功能。因此,若是 Web 應用程序採用了經典的三層分層結構的話,最好在持久層、業務層和控制層分別採用 @Repository、@Service 和 @Controller 對分層中的類進行註釋,而用 @Component 對那些比較中立的類進行註釋。性能

在一個稍大的項目中,一般會有上百個組件,若是這些組件採用xml的bean定義來配置,顯然會增長配置文件的體積,查找以及維護起來也不太方便。 Spring2.5爲咱們引入了組件自動掃描機制,他能夠在類路徑底下尋找標註了 @Component,@Service,@Controller,@Repository註解的類,並把這些類歸入進spring容器中管理。它的做用和在xml文件中使用bean節點配置組件時同樣的。要使用自動掃描機制,咱們須要打開如下配置信息:spa

<?xml version="1.0" encoding="UTF-8" ?>prototype

<beans xmlns="http://www.springframework.org/schema/beans"component

xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xml

xmlns:context="http://www.springframework.org/schema/context"接口

xsi:schemaLocation="http://www.springframework.org/schema/beans  字符串

http://www.springframework.org/schema/beans/spring-beans-2.5.xsdget

http://www.springframework.org/schema/contextit

http://www.springframework.org/schema/context/spring-context-2.5.xsd"  > 

<context:component-scan base-package=」com.eric.spring」>  

</beans>  

其中base-package爲須要掃描的包(含全部子包)

在 spring的配置文件裏面只須要加上<context:annotation-config/> 和<context:component-scan base-package="須要實現注入的類所在包"/>,固然也可使用base-package="*"表示所有的類,但通常狀況下不這樣使用,影響系統性能,一般以下使用:

<context:component-scan base-package=」com.eric.spring」>

其中base-package爲須要掃描的包(含全部子包)

 

注入方式:

把DAO實現類注入到service實現類中,把service的接口(注意不要是service的實現類)注入到action中,注入時不要new 這個注入的類,由於spring會自動注入,若是手動再new的話會出現錯誤,而後屬性加上@Autowired後不須要getter()和setter()方法,Spring也會自動注入。至於更具體的內容,等對注入的方式更加熟練後會作個完整的例子上來。

類註解說明

類註解就是在類定義上標註的註解,不是在類定義的裏面加標註,是在類的前面標註。主要是4個註解:

@Service用於標註業務層組件,表示定義一個bean,自動根據bean的類名實例化一個首寫字母爲小寫的bean,例如Chinese實例化爲chinese,若是須要本身更名字則:@Service("你本身改的bean名")。  

@Controller用於標註控制層組件(如struts中的action)

@Repository用於標註數據訪問的持久層組件,即DAO組件

@Component泛指組件,當組件很差歸類的時候,咱們可使用這個註解進行標註。

例如:

@Service

public class VentorServiceImpl implements iVentorService {  

……

}

@Repository

public class VentorDaoImpl implements iVentorDao { 

……

}

getBean的默認名稱是類名(頭字母小寫),若是想自定義,能夠@Service(「aaaaa」)這樣來指定,這種bean默認是單例的,若是想改變,可使用@Service(「beanName」) @Scope(「prototype」)來改變。

方法或變量註解說明

可使用如下方式指定初始化方法和銷燬方法(方法名任意):

@PostConstruct

public void init() { 

……

@PreDestroy

public void destory() { 

……

}

 

在接口前面標上@Autowired和@Qualifier註解使得接口能夠被容器注入,當接口存在兩個實現類的時候必須指定其中一個來注入,使用實現類首字母小寫的字符串來注入,如:

@Autowired

@Qualifier("chinese") 

private Man man;   

不然能夠省略,只寫@Autowired   。

相關文章
相關標籤/搜索