版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、java模擬spring ioc?xml version= 1.0 eoding= utf-8 ? beans xms= /schema/beans xmlns:xsi= /2001/xmlschema-instance xsi:schemaloion= /schema/beans /schema/beans/spring-beans-2.5.xsd bean = persondao >
2、; bean id= personservice > property name= id value= 24 / property name= name value= zyj / !- property name= persondao ref= persondao / - /bean /beans package junit.test12; import java.util.arraylist; import java.util.list; /* * xml中的 bean/ 的定義 * author adminisator * */ public class beandefinition
3、 private string id; private string clazz; private list propertydefinition propertydefinitions=new arraylist propertydefinition public beandefinition(string id, string clazz) per(); this.id = id; this.clazz = clazz; public string getid() return id; public void id(string id) this.id = id; public strin
4、g getclazz() return clazz; public void setclazz(string clazz) this.clazz = clazz; public list propertydefinition getpropertydefinitions() return propertydefinitions; public void setpropertydefinitions(list propertydefinition propertydefinitions) pertydefinitions = propertydefinitions; nbsp;
5、package junit.test12; public class propertydefinition private string name; private string ref; private string value; public propertydefinition(string name, string ref,string value) super(); = name; this.ref = ref; this.value=value; public string getname() return name; public void setname(s
6、tring name) = name; public string getref() return ref; public void setref(string ref) this.ref = ref; public string getvalue() return value; public void setvalue(string value) this.value = value; package junit.test12; import java.lang.annotation.elementtype; import java.lang.annotation.ret
7、ention; import java.lang.annotation.retentionpolicy; import java.lang.annotation.target; retention(retentionpolicy.runtime) target(elementtype.field,elementtype.method) public interface userdefinresource public string name() default /用法dom4j讀取spring配置文件 package junit.test12; import java.beans.intros
8、pectionexception; import java.beans.introspector; import java.beans.propertydescriptor; import java.lang.reflect.field; import java.lang.reflect.invocationtargetexception; import java.lang.reflect.method; import .url; import java.util.arraylist; import java.util.hashmap; import java.util.list; impor
9、t java.util.map; import junit.test12.beandefinition; import mons.beanuti.convertutils; import mons.beanutils.converter; import org.dom4j.document; import org.dom4j.documentexception; import org.dom4j.element; import org.dom4j.xpath; import org.dom4j.io.saxreader; /* * 自定義容器 * author administrator *
10、*/ public class userdefinedclasspathxmlapplicationcontt private list beandefinition beandefinitions=new arraylist beandefinition private map string, object sigletons=new hashmap string, object public userdefinedclasspathxmlapplicationcontext(string name) this.readxml(filename); this.instancebeans();
11、 this.annotationinject(); this.injectobject(); /* * 讀取xml配置文件 * param filename */ private void readxml(string filename) saxreader saxreader=new saxreader(); document document=null; try url xmlpath=this.getclass().getclassloader().getresource(filename); document=saxreader.read(xmlpath); xpath xpath=d
12、ocument.createxpath( /ns:beans/ns:bean /創(chuàng)建beans/bean查詢路徑。從根路徑開頭 map string, string nsmap=new hashmap string, string nsmap.put( ns , /schema/beans /加入命名空間 xpath.setnamespaceuris(nsmap);/設(shè)置命名空間 list element beans=xpath.selectnodes(document);/獵取文檔下全部bean節(jié)點(diǎn) for (element elem
13、ent : beans) string id=element.attributevalue( id string clazz=element.attributevalue( class beandefinition beandefinition=new beandefinition(id, clazz); xpath xpath2=element.createxpath( ns:property /從相對路徑開頭 xpath2.setnamespaceuris(nsmap); list element propertys=xpath2.selectnodes(element); for (el
14、ement element2 : propertys) string name=element2.attributevalue( name string ref=element2.attributevalue( ref string value=element2.attributevalue( value propertydefinition propertydefinition=new propertydefinition(name, ref,value); beandefinition.getpropertydefinitions().a(propertydefinition); bean
15、definitions.add(beandefinition); catch (documentexception e) / todo auto-generated catch block e.printstacktrace(); /* * 完成bean的實(shí)例化 */ private void instancebeans() try for (beandefinition beandefinition : beandefinitions) if (beandefinition.getclazz()!=null ! .equals(beandefinition.getclazz().trim()
16、 sigletons.put(beandefinition.getid(), class.forname(beandefinition.getclazz().newinstance(); catch (classnotfoundexception e) / todo auto-generated catch block e.printstacktrace(); catch (instantiationexception e) / todo auto-generated catch block e.printstacktrace(); catch (illegalaccessexception
17、e) / todo auto-generated catch block e.printstacktrace(); /* * 為bean對象的屬性注入值 * throws introspectionexception * throws invocationtargetexception * throws illegalaccessexception * throws illegalargumentexception */ private void injectobject() try for (beandefinition beandefinition : beandefinitions) o
18、bject bean=sigletons.get(beandefinition.getid(); if (bean!=null) propertydescriptor ps=introspector.getbeaninfo(bean.getclass().getpropertydescriptors(); for(propertydefinition propertydefinition:beandefinition.getpropertydefinitions() for (propertydescriptor propertydescriptor : ps) if (propertydef
19、inition.getname().equals(propertydescriptor.getname() method settermethod=propertydescriptor.getwritemethod();/獵取屬性的setter辦法 if (settermethod!=null) object temp=null; if (propertydefinition.getref()!=null ! .equals(propertydefinition.getref().trim() temp=sigletons.get(propertydefinition.getref(); el
20、se if (propertydefinition.getvalue()!=null ! .equals(propertydefinition.getvalue().trim() temp=convertutils.convert(propertydefinition.getvalue(), propertydescriptor.getpropertytype(); settermethod.setaccessible(true);/防止setter辦法為private settermethod.invoke(bean, temp);/把引用對象注入到屬性 break; catch (exce
21、ption e) / todo auto-generated catch block e.printstacktrace(); /* * 通過注解實(shí)現(xiàn)注入依靠對象 * throws introspectionexception * throws invocationtargetexception * throws illegalaccessexception * throws illegalargumentexception */ private void annotationinject() try for (string beanname : sigletons.keyset() obje
22、ct bean=sigletons.get(beanname); if (bean!=null) propertydescriptor ps=introspector.getbeaninfo(bean.getclass().getpropertydescriptors(); for (propertydescriptor propertydescriptor : ps) method settermethod=propertydescriptor.getwritemethod(); if (settermethod!=null settermethod.isannotationpresent(
23、userdefinedresource.class) userdefinedresource userdefinedresource=settermethod.getannotation(userdefinedresource.class); object temp = null; if(userdefinedr()!=null ! .equals(userdefinedr() /一旦指定了name屬性,就只能按名稱裝配了 temp = sigletons.get(userdefinedr(); else temp = s
24、igletons.get(propertydescriptor.getname(); if(temp=null) for(string key : sigletons.keyset() if(propertydescriptor.getpropertytype().isassignablefrom(sigletons.get(key).getclass() temp = sigletons.get(key); break; settermethod.setaccessible(true); settermethod.invoke(bean, temp);/把引用對象注入到屬性 field fi
25、elds = bean.getclass().getdeclaredfields(); for(field field : fields) if(field.isannotationpresent(userdefinedresource.class) userdefinedresource userdefinedresource = field.getannotation(userdefinedresource.class); object temp = null; if(userdefinedr()!=null ! .equals(userdefinedr() temp = sigletons.get(userdefinedr(); else temp = sigletons.get(field.getname(); if(temp=null) for(string key
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五版國際貿(mào)易合同履行中的知識產(chǎn)權(quán)保護(hù)協(xié)議2篇
- 中醫(yī)學(xué)徒師承合同模板(2024年版)版B版
- 二零二五年生物制藥技術(shù)合同認(rèn)定與登記服務(wù)協(xié)議3篇
- 2025年度二零二五年度商業(yè)綜合體攤位租賃服務(wù)協(xié)議3篇
- 二零二五版信息技術(shù)企業(yè)股權(quán)托管與產(chǎn)業(yè)協(xié)同協(xié)議3篇
- 2025年度城市排水系統(tǒng)改造與安裝服務(wù)合同3篇
- 2025年度智能停車設(shè)施運(yùn)營管理合同范本2篇
- 二零二五版出租汽車行業(yè)駕駛員勞動合同標(biāo)準(zhǔn)文本3篇
- 2024手繪墻繪藝術(shù)作品展覽與推廣合同3篇
- 2024離婚彩禮退還與財產(chǎn)分割爭議解決執(zhí)行服務(wù)協(xié)議3篇
- 大型活動聯(lián)合承辦協(xié)議
- 工程項目采購與供應(yīng)鏈管理研究
- 2024年吉林高考語文試題及答案 (2) - 副本
- 拆除電纜線施工方案
- 搭竹架合同范本
- Neo4j介紹及實(shí)現(xiàn)原理
- 焊接材料-DIN-8555-標(biāo)準(zhǔn)
- 工程索賠真實(shí)案例范本
- 重癥醫(yī)學(xué)科運(yùn)用PDCA循環(huán)降低ICU失禁性皮炎發(fā)生率品管圈QCC持續(xù)質(zhì)量改進(jìn)成果匯報
- 個人股權(quán)證明書
- 醫(yī)院運(yùn)送工作介紹
評論
0/150
提交評論