1. 程式人生 > >使用Spring註解完成Bean的定義

使用Spring註解完成Bean的定義

通過@Autowired或@Resource來實現在Bean中自動注入的功能,但還要在配置檔案中寫Bean定義,下面我們將介紹如何註解Bean,從而從XML配置檔案 中完全移除Bean定義的配置。 


1. @Component(不推薦使用)、@Repository、@Service、@Controller 
只需要在對應的類上加上一個@Component註解,就將該類定義為一個Bean了: 

@Component  
public class UserDaoImpl extends HibernateDaoSupport implements UserDao {  
    ...  
} 
使用@Component註解定義的Bean,預設的名稱(id)是小寫開頭的非限定類名。如這裡定義的Bean名稱就是 userDaoImpl。你也可以指定Bean的名稱: 
@Component("userDao") 
@Component是所有受Spring管理元件的通用形式,Spring還提供了更加細化的註解形式:@Repository、 @Service、@Controller,它們分別對應儲存層Bean,業務層Bean,和展示層Bean。目前版本(2.5)中,這些註解與 @Component的語義是一樣的,完全通用,在Spring以後的版本中可能會給它們追加更多的語義。所以,我們推薦使用@Repository、 @Service、@Controller來替代@Component。 


2. 使用<context:component-scan />讓Bean定義註解工作起來 
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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.xsd  
    http://www.springframework.org/schema/context  
    http://www.springframework.org/schema/context/spring-context-2.5.xsd">  
    <context:component-scan base-package="com.kedacom.ksoa" />  
</beans>  
這裡,所有通過<bean>元素定義Bean的配置內容已經被移除,僅需要新增一行<context:component- scan />配置就解決所有問題了——Spring XML配置檔案得到了極致的簡化(當然配置元資料還是需要的,只不過以註釋形式存在罷了)。<context:component-scan />的base-package屬性指定了需要掃描的類包,類包及其遞迴子包中所有的類都會被處理。 
<context:component-scan />還允許定義過濾器將基包下的某些類納入或排除。Spring支援以下4種類型的過濾方式: 
過濾器型別 表示式範例 說明
註解 org.example.SomeAnnotation 將所有使用SomeAnnotation註解的類過濾出來
類名指定 org.example.SomeClass 過濾指定的類
正則表示式 com\.kedacom\.spring\.annotation\.web\..* 通過正則表示式過濾一些類
AspectJ表示式 org.example..*Service+ 通過AspectJ表示式過濾一些類


以正則表示式為例,我列舉一個應用例項:
<context:component-scan base-package="com.casheen.spring.annotation">  
    <context:exclude-filter type="regex" expression="com\.casheen\.spring\.annotation\.web\..*" />  
</context:component-scan> 
值得注意的是<context:component-scan />配置項不但啟用了對類包進行掃描以實施註釋驅動Bean定義的功能,同時還啟用了註釋驅動自動注入的功能(即還隱式地在內部註冊了 AutowiredAnnotationBeanPostProcessor和CommonAnnotationBeanPostProcessor), 因此當使用<context:component-scan />後,就可以將<context:annotation-config />移除了。 


3. 使用@Scope來定義Bean的作用範圍 
在使用XML定義Bean時,我們可能還需要通過bean的scope屬性來定義一個Bean的作用範圍,我們同樣可以通過@Scope註解來完 成這項工作: 
@Scope("session")  
@Component()  
public class UserSessionBean implements Serializable {  
    ...  
}