EJB设计模式(三)

在设计模式2中我们看到,在entity bean和struct之间有很多重复的代码比如同样的字段声明(对应数据库中的表列)。

如果让entity bean从结构继承下来就可以避免冗余的代码。但是这种设计,仍然不能显示beans之间的联系。

Code snippet for Company Entity Beanpublic class CompanyBean extends CompanyStructimplements EntityBean {EntityContext entityContext;//all fields in CompanyStruct are available for CMPpublic Integer ejbCreate(CompanyStruct Struct)throws CreateException {this.comId = struct.comId; //set the primary keysetData(struct);//this removes some redundant codereturn null;}

其余的代码比如getdata()和setdata()方法的实现和设计模式2中是完全一样的。

不如意的时候不要尽往悲伤里钻,想想有笑声的日子吧

EJB设计模式(三)

相关文章:

你感兴趣的文章:

标签云: