1. 程式人生 > >Spring原始碼解析(三)——元件註冊3

Spring原始碼解析(三)——元件註冊3

@Scope設定元件作用域

import com.ken.domain.Person;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Scope;

@Configuration
public class MainConfig {

	/**
	 * singleton: 定義該bean是單例模式,ioc容器啟動會呼叫方法建立物件放到ioc容器中,以後每次獲取直接從容器中
	 * prototype:每次呼叫都會建立一個新的bean實列。ioc容器啟動並不會建立例項,而是在每次獲取的時候去建立物件
	 * request:同一次請求建立一個例項
	 * session:同一個session建立一個例項
	 * @return
	 */
	@Scope("prototype")
	@Bean(value = "person")
	public Person person() {
		return new Person("lisi", 20);
	}
}

 

@Lazy懶載入。針對於singleton,@Lazy使得,ioc容器啟動的時候,不去建立bean,而是,在使用到bean的時候再建立。

import com.ken.domain.Person;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Lazy;

@Configuration
public class MainConfig {
	@Lazy
	@Bean(value = "person")
	public Person person() {
		System.out.println("chuangjain");
		return new Person("lisi", 20);
	}
}