1. 程式人生 > >Spring自動掃描和管理Bean

Spring自動掃描和管理Bean

在大的專案中,通常會有上百個元件,如果這些元件採用xml的bean定義來配置,顯然會使配置檔案顯得很臃腫,查詢和維護起來不方便。

Spring2.5 為我們引入了元件自動掃描機制,它可以在類路徑下尋找標記了@Component、@Service、@Controller、@Repository註解的類,並把這些類納入到spring容器中管理,它的作用和在xml中使用bean節點配置元件一樣。要使用自動掃描機制,我們需要把配置檔案如下配置:

<?xml version="1.0" encoding="UTF-8"?>
<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"
	xmlns:tx="http://www.springframework.org/schema/tx"
	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 
		 http://www.springframework.org/schema/tx 
		 http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
	
	<context:component-scan base-package="com.zpring"></context:component-scan><!--base-package為需要掃描的包(包括子包)-->
</beans> 

@Service用於標註業務層的元件,

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

@Repository用於標註資料訪問元件,即DAO元件,

@Component泛指元件,當元件不好歸類的時候,我們可以使用這個註解進行標註。

import org.springframework.stereotype.Service;

import com.zpring.dao.PersonDao;
import com.zpring.service.UserService;

@Service
// 把這個類交給spring管理,作為服務。
public class UserServiceImpl implements UserService {
	private PersonDao personDaoBean;

	public void show() {
		personDaoBean.show();
	}

	public void setPersonDaoBean(PersonDao personDaoBean) {
		this.personDaoBean = personDaoBean;
	}


	public PersonDao getPersonDaoBean() {
		return personDaoBean;
	}
}

其中userService是在配置檔案中配置的bean的id。但是如今我們並沒有id這個屬性,在spring2.5中,預設的id是類的名稱,但是開後是小寫,也就是userServiceImpl。

如果我們想自己命名的話,則只需在註解後加上括號,裡面寫入你希望的名字,如@Service("userService")。
在spring中預設的是隻生成一個bean例項,如果我們想每次呼叫都產生一個例項,則標註需如下配置@Service @Scope("prototype")