Spring(2)

Spring容器是怎樣管理bean的呢?java

咱們模擬Spring容器的內部實現:spring

(1) 讀取Spring中的Bean配置文件數組


	//讀取bean配置文件
	public void readXml(String beanDir){
		Document document = null;
		try{
			SAXReader sx = new SAXReader();
			URL xmlPath = this.getClass().getClassLoader().getResource(beanDir);
			document = sx.read(xmlPath);
			Map<String,String>nsMap = new HashMap<String,String>();
			nsMap.put("ns", "http://www.springframework.org/schema/beans");
			XPath xp = document.createXPath("//ns:beans/ns:bean");
			xp.setNamespaceURIs(nsMap);//設置命名空間
			List<Element> el = xp.selectNodes(document);//獲取文檔下的全部節點
			for(Element element:el){
				String id = element.attributeValue("id");
				String className  = element.attributeValue("class");
				PeopleBean peopleBean = new PeopleBean(id,className);
				list.add(peopleBean);
			}
		}catch(Exception e){
			e.printStackTrace();
		}
	}

 二、實例化beandom


 包含上部分的完整的代碼爲:測試

package junit.test;

import java.io.StringReader;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.XPath;
import org.dom4j.io.SAXReader;

public class LearnCreateBean {
	
	//bean數組
	private List<PeopleBean>list = new ArrayList<PeopleBean>();
	private Map<Object,Object>map = new HashMap<Object,Object>();
	
	
	LearnCreateBean(String beanDir){
		readXml(beanDir);
		instanceBeans();
	}

	/**
	 * 實例化bean
	 */
	public void instanceBeans(){
		for (PeopleBean bean:list){
			try {
				map.put(bean.getId(), Class.forName(bean.getClassName()).newInstance());
			} catch (InstantiationException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} catch (IllegalAccessException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} catch (ClassNotFoundException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}
	
	//讀取bean配置文件
	public void readXml(String beanDir){
		Document document = null;
		try{
			SAXReader sx = new SAXReader();
			URL xmlPath = this.getClass().getClassLoader().getResource("bean.xml");
			document = sx.read(xmlPath);
			Map<String,String>nsMap = new HashMap<String,String>();
			nsMap.put("ns", "http://www.springframework.org/schema/beans");
			XPath xp = document.createXPath("//ns:beans/ns:bean");
			xp.setNamespaceURIs(nsMap);//設置命名空間
			List<Element> el = xp.selectNodes(document);//獲取文檔下的全部節點
			for(Element element:el){
				String id = element.attributeValue("id");
				String className  = element.attributeValue("class");
				PeopleBean peopleBean = new PeopleBean(id,className);
				list.add(peopleBean);
			}
		}catch(Exception e){
			e.printStackTrace();
		}
	}
	
	//
	
	public Object getBeanU(String beanName){
		return  this.map.get(beanName);
	}
	

}

  

 三、 測試this


	@Test
	public void test() {
		//實例化Spring容器
		ApplicationContext ctx =  new ClassPathXmlApplicationContext("bean.xml");
		PeopleService peopleService = (PeopleService)ctx.getBean("peopleService");
		peopleService.testBeans();
		//採用自定義的類來實例化bean
		LearnCreateBean ctxd =  new LearnCreateBean("bean.xml");
		PeopleService peopleServiced = (PeopleService)ctx.getBean("peopleService");
		peopleService.testBeans();
	}

能夠發現二者都實現了正確的輸出。spa

相關文章
相關標籤/搜索