Spring 自動掃描元件

AngeliaZheng發表於2018-09-18

前面 Spring 文章都是使用 XML bean 配置檔案實現 Spring 容器檢測並註冊Bean類或元件。其實,Spring是能夠自動掃描,檢測和預定義的專案包並例項化bean,不再有繁瑣的Bean類宣告在XML檔案中。

現在,啟用Spring元件掃描功能。使用@Component註釋來表示這是類是一個自動掃描元件。

@Component
public class ArticleServiceImpl implements ArticleService {
	@Autowired
	private ArticleDao articleDao;
	
	public void setArticleDao(ArticleDao articleDao) {
		this.articleDao = articleDao;
	}

        ...
}

在配置檔案新增“context:component”,即在 Spring 中啟用自動掃描功能。base-package 是指明儲存元件,Spring將掃描該資料夾,並找出Bean(註解為@Component)並註冊到 Spring 容器。

<context:component-scan base-package="com.angelia.spring" />

效果和之前一樣。

自定義自動掃描元件名稱

預設情況下,Spring 將小寫部件的第一字元- 從'ArticleServiceImpl'到'articleServiceImpl'。可以檢索該元件名稱為“articleServiceImpl”。

要建立元件的自定義名稱,你可以這樣自定義名稱:

@Component("articleService")

自動元件掃描註釋型別

以下為4個常用的自動掃描註釋型別:

  • @Component – 指示自動掃描元件。
  • @Repository – 表示在持久層DAO元件。
  • @Service – 表示在業務層服務元件。
  • @Controller – 表示在表示層控制器元件

其實把所有可以被 @Repository,@Service 或 @Controller 註解的元件都註解為 @Component 也是可以的。Spring會自動掃描所有元件的 @Component 註解。但這並不是一個好的做法,為便於閱讀,應該始終宣告@Repository,@ Service 或 @Controller 在指定的層,使你的程式碼更易於閱讀,如下:

@Repository
public class ArticleDaoImpl implements ArticleDao {
        ...

}

@Service
public class ArticleServiceImpl implements ArticleService {
            ...

}

相關文章