当前位置: 代码迷 >> Java Web开发 >> Hibernate自定义主键问题
  详细解决方案

Hibernate自定义主键问题

热度:296   发布时间:2007-11-14 11:07:25.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  定义  

----------------解决方案--------------------------------------------------------
自定义主键不是写在配置里么,没太看懂lz什么意思。
----------------解决方案--------------------------------------------------------
  相关解决方案