• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

插入式持久性提供者的承诺:Kodo、OpenJPA和Hibernate

发布: 2008-6-25 14:30 | 作者: 不详 | 来源: 测试时代编辑整理 | 查看: 527次 | 进入软件测试论坛讨论

领测软件测试网


29   @GeneratedValue
30   private long id;
31  
32   /**
33    * Annotates the field to carry a TIMESTAMP value in the database column.
34    * The column name is different than the default value of timestamp
35    * because many databases will reserve that word. 
36    *
37    * The field is immutable by application (no setter method) and set on
38    * construction with current time.
39    */
40   @Temporal(TemporalType.TIMESTAMP)
41   @Column(name="createdOn")
42   private Date timestamp;
43  
44   /**
45    * Does not annotate but the field will be persisted nevertheless by
46    * convention of String and primitive types being persistent by default.
47    */
48   private String body;
49  
50   protected Message() {
51     this("");
52   }
53  
54   public Message(String body) {
55     timestamp = new Date();
56     this.body = (body == null) ? "" : body;
57   }
58
59   public long getId() {
60     return id;
61   }
62
63   public String getBody() {
64     return body;
65   }
66
67   public Date getTimestamp() {
68     return timestamp;
69   }
70 }  因为我们使用了O-R映射注释表示Message类的实例与数据库表和列之间的映射关系(或者说是哪个域值能够作为Message实例的主标识符),所以JPA依赖关系已经移入这个Java类中。这些映射信息可以移到一个单独的orm.xml中,从而使这个类恢复Pure Old Java Object (POJO)状态并完善这种不明确的更接近域对象模型的方法。

编码前的测试
  JUnit测试用例通过JNDI查找与服务进行交互并检验两个服务方法返回的是否为预期的结果。

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网