标题:Hibernate自定义主键问题
只看楼主
wbl313
Rank: 1
等 级:新手上路
帖 子:69
专家分:0
注 册:2006-8-28
 问题点数:0 回复次数:1 
Hibernate自定义主键问题

代码如下:但是不能通过编译,请高手指点
public class UIDGenerator extends TableGenerator {

private static int idIndex = 1;
private static DecimalFormat df = new DecimalFormat("00");
private static SimpleDateFormat sdf = new SimpleDateFormat("yyMMddHHmmssSSS");

public Serializable generate(SessionImplementor arg0, Object arg1)
throws HibernateException {
return nextId();
}

public static synchronized String nextId() {
Date now = new Date();
if (idIndex > 99) idIndex = 1;
// return sdf.format(now)+df.format(idIndex++);
return now.getTime() + df.format(idIndex++);
}

public void configure(Type type, Properties params, Dialect d) {
super.configure(type, params, d);
}

搜索更多相关主题的帖子: Hibernate 定义 
2007-11-14 11:07
黄袖标
Rank: 4
等 级:贵宾
威 望:13
帖 子:676
专家分:0
注 册:2007-3-22
得分:0 
自定义主键不是写在配置里么,没太看懂lz什么意思。

我胡汉三又回来啦!物是人非啊,只有静夜思大大还在。
2007-11-14 17:17



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-185814-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.244778 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved