熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java開源技術 >> 正文

hibernate中自定義主鍵生成器[1]

2022-06-13   來源: Java開源技術 

  Hibernate(目前使用的版本是)中提供了多種生成主鍵的方式

  然而當前的這麼多種生成方式未必能滿足我們的要求

  比如increment可以在一個hibernate實例的應用上很方便的時候但是在集群的時候就不行了

  再如 identity sequence native 是數據局提供的主鍵生成方式往往也不是我們需要而且在程序跨數據庫方面也體現出不足

  還有基於算法的生成方式生成出來的主鍵基本都是字符串的

  我們現在需要一種生成方式使用Long作為主鍵類型自動增支持集群

  那麼我們需要自定義一個我們的主鍵生成器才能實現了

  實現代碼:

package hibernate;

import javaioSerializable;
import javasqlConnection;
import javasqlPreparedStatement;
import javasqlResultSet;
import javasqlSQLException;
import javautilProperties;

import orgapachecommonsloggingLog;
import orgapachecommonsloggingLogFactory;
import orghibernateHibernateException;
import orghibernateMappingException;
import orghibernatedialectDialect;
import orghibernateengineSessionImplementor;
import orghibernateidConfigurable;
import orghibernateidIdentifierGenerator;
import orghibernateidPersistentIdentifierGenerator;
import orghibernatetypeType;


public class IncrementGenerator implements IdentifierGenerator Configurable {
private static final Log log = LogFactorygetLog(IncrementGeneratorclass);
private Long next;
private String sql;
public Serializable generate(SessionImplementor session Object object)
throws HibernateException {
if (sql!=null) {
getNext( sessionconnection() );
}
return next;

}

[]  []  


From:http://tw.wingwit.com/Article/program/Java/ky/201311/29169.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.