EJB設計模式3 (轉)

worldblog發表於2007-12-09
EJB設計模式3 (轉)[@more@]

 

設計3
在設計模式2中我們看到,在entity bean和struct之間
有很多重複的程式碼比如同樣的欄位宣告(對應中的表列)。
如果讓entity bean從結構繼承下來就可以避免冗餘的程式碼。但是
這種設計,仍然不能顯示beans之間的聯絡。

Code snippet for Company Entity Bean
public class CompanyBean extends CompanyStruct
implements EntityBean {
EntityContext entityContext;
//all fields in CompanyStruct are available for CMP
public Integer Create(CompanyStruct Struct)
throws CreateException {
this.comId = struct.comId; //set the primary key
setData(struct);//this removes some redundant code
return null;
}

其餘的程式碼比如getdata()和setdata()方法的實現和設計模式2中
是完全一樣的。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-990175/,如需轉載,請註明出處,否則將追究法律責任。

相關文章