当前位置:首页 > 网站旧栏目 > 学习园地 > 设计软件教程 > DomainModel之DomainObject

DomainModel之DomainObject
2010-01-14 22:32:24  作者:  来源:
相对于UI的开发受限于既有框架的结构,DomainModel有更大的灵活性,因为框架本身由自己开发的。
  在整个DomainModel框架中,最基础的对象莫过于DomainObject。DomainObject既然是所有领域
对象的父类,就该体现最基础的特征。并且为其他层或某些方面提供一致的入口。
  “有名万物之母”,这也是DomainObject中需要体现的。
DomainObject的名有很多,很多的原因是有很多关心它的参与者。

计算机使用的名--ID:必须,通常为64位的Integer。如果数据库是64位的CPU,据说这样定ID效率是最高的。

第三方和用户输入的名--Code:可选,String类型。尽管计算机知道了DomainObject,但用户却不知道,(用户登录系统就需要通过Code)第三方的开发人员也不知道。

用户期望看到的名--Name: 可选,String类型。对应于自然语言中的名。

用户期望看到的关于该对象的描述之名--Description:可选,String类型。这也需要最不重要的名了,对于该对象的备注,简要解释都可以放到这里。

有了名,我们就可以思考DomainObject了,基于“万物皆过程”的思考,表现过程的属性是需要加上的。于是
DomainObject有了{TimePeriod lifecycle}字段。lifecycle.start应该可以在某个构造函数中填入,当对象在业务上无效时可以填入lifecycle.end。DomainObject就“存活”于lifecycle之中。
当然你可以残酷一些,让DomainObject回归虚无,直接调用destroy方法,彻底删除它。

实际上持久化的DomainObject不过是反映了对象在lifecycle期间的当前快照,也就是说DomainObject存在很多快照,
我们可以使用{int version}来标识当前快照。

不知道什么时间,有人在DomainObject中放入了{int serialNumber},说是为了比较同类DomainObject的次序,我也说不清这是否站得住脚。

Java代码 复制代码
  1. public abstract class DomainObject implements Comparable{   
  2.        
  3.     private Long id;   
  4.        
  5.     private String code;   
  6.        
  7.     private String name;   
  8.   
  9.     private String description;   
  10.   
  11.           private TimePeriod lifecycle;   
  12.   
  13.           private int version;   
  14.   
  15.           private int serialNumber;   
  16.   
  17.     /**  
  18.     * 从持久层中重新构造DomainObject  
  19.     */  
  20.     protected DomainObject(); {   
  21.   
  22.     }   
  23.   
  24.     /**  
  25.     * 业务上创建DomainObject  
  26.     */  
  27.     protected DomainObject(String name, String code, int serialNumber,   
  28.         String description); {   
  29.         this.id = IdGenerator.getCurrent();.nextId(this);;   
  30.         this.version = 0;   
  31.         this.lifecycle = new TimePeriod();;   
  32.         this.name = name;   
  33.         this.code = code == null ? id.toString(); : code;   
  34.         this.serialNumber = serialNumber;   
  35.         this.description = description;   
  36.     }   
  37.        
  38.     public void destroy(); {   
  39.        
  40.     }   
  41.        
  42.     @Override  
  43.     public int hashCode(); {   
  44.         assert id != null : this.getClass();.getName(); + " id为null";   
  45.         return id.hashCode();;   
  46.     }   
  47.   
  48.     @Override  
  49.     public boolean equals(Object obj); {   
  50.         if (!(obj instanceof DomainObject););   
  51.             return false;   
  52.         DomainObject domainObj = (DomainObject); obj;   
  53.         return this.getId();.longValue(); == domainObj.getId();.longValue();;   
  54.     }   
  55.   
  56.     public int compareTo(Object obj); {   
  57.         assert this.getClass(); == obj.getClass(); : "无在不同的DomainObject间比较";   
  58.         DomainObject o = (DomainObject); obj;   
  59.         return this.serialNumber.compareTo(o.serialNumber);;   
  60.     }   
  61.        
  62.     /**  
  63.     * 判断DomainObject是否已过期  
  64.     */  
  65.     public boolean isExpired(); {   
  66.         Calendar now = Calendar.getInstance();;   
  67.         if (now.compareTo(lifecycle.getEnd();); > 0);   
  68.             return true;   
  69.         else  
  70.             return false;   
  71.     }   
  72.        
  73.     public TimePeriod getLifecycle(); {   
  74.         return (TimePeriod); lifecycle.clone();;   
  75.     }   
  76.        
  77.     public void setEnd(Calendar end); {   
  78.         lifecycle.setEnd((Calendar); end.clone(););;   
  79.     }   
  80.        
  81.     public void checkVersion(int version); {   
  82.         if (this.version.compareTo(version); != 0);   
  83.             throw new DataChangedByOthersException();;   
  84.     }   
  85.        
  86. }  

安徽新华电脑学校专业职业规划师为你提供更多帮助【在线咨询