摘要: 下面是很关键的一点<generator>的解释是:用于指定主键的生成策略。--------------------------------------------------------------------------------“assigned”主键由外部程序负责生成,在 save() 之前指定一个。 “hilo”通过hi/lo 算法实现的主键生成机制,需要额外的数据库表或字段提供高位值来源。 “seqhilo”与hilo 类似,通过hi/lo 算法实现的主键生成机制,需要数据库中的 Sequence,适用于支持 Sequence 的数据库,如Oracle。 “increm 阅读全文
posted @ 2011-03-22 14:47 淡啶 阅读(634) 评论(0) 推荐(0)
摘要: 1 import java.io.*; 2 public class MyEclipseGen { 3 private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 1204 of th 阅读全文
posted @ 2011-03-20 17:35 淡啶 阅读(357) 评论(1) 推荐(3)