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



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




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

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