91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Hibernate實例分析

發布時間:2021-12-06 09:12:01 來源:億速云 閱讀:130 作者:iii 欄目:編程語言

這篇文章主要介紹“Hibernate實例分析”,在日常操作中,相信很多人在Hibernate實例分析問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Hibernate實例分析”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Hibernate(目前使用的版本是3.2)中提供了多種生成主鍵的方式。然而當前的這么多種生成方式未必能滿足我們的要求。比如increment,可以在一個Hibernate實例的應用上很方便的時候,但是在集群的時候就不行了。再如 identity ,sequence ,native 是數據局提供的主鍵生成方式,往往也不是我們需要,而且在程序跨數據庫方面也體現出不足。還有基于算法的生成方式生成出來的主鍵基本都是字符串的。

我們現在需要一種生成方式:使用Long作為主鍵類型,自動增,支持集群。那么我們需要自定義一個我們的主鍵生成器才能實現了。

Hibernate實例代碼:

  1. package hibernate;  

  2.  

  3. import java.io.Serializable;  

  4. import java.sql.Connection;  

  5. import java.sql.PreparedStatement;  

  6. import java.sql.ResultSet;  

  7. import java.sql.SQLException;  

  8. import java.util.Properties;  

  9.  

  10. import org.apache.commons.logging.Log;  

  11. import org.apache.commons.logging.LogFactory;  

  12. import org.hibernate.HibernateException;  

  13. import org.hibernate.MappingException;  

  14. import org.hibernate.dialect.Dialect;  

  15. import org.hibernate.engine.SessionImplementor;  

  16. import org.hibernate.id.Configurable;  

  17. import org.hibernate.id.IdentifierGenerator;  

  18. import org.hibernate.id.PersistentIdentifierGenerator;  

  19. import org.hibernate.type.Type;  

  20.  

  21. public class IncrementGenerator implements IdentifierGenerator, Configurable {  

  22. private static final Log log = LogFactory.getLog(IncrementGenerator.class);  

  23. private Long next;  

  24. private String sql;  

  25. public Serializable generate(SessionImplementor session, Object object)  

  26. throws HibernateException {  

  27. if (sql!=null) {  

  28. getNext( session.connection() );  

  29. }  

  30. return next;  

  31. }  

  32.  

  33. public void configure(Type type, Properties params, Dialect d) 
    throws MappingException {  

  34. String table = params.getProperty("table");  

  35. if (table==null) table = params.
    getProperty(PersistentIdentifierGenerator.TABLE);  

  36. String column = params.getProperty("column");  

  37. if (column==null) column = params.
    getProperty(PersistentIdentifierGenerator.PK);  

  38. String schema = params.getProperty
    (PersistentIdentifierGenerator.SCHEMA);  

  39. sql = "select max("+column +") from " + 
    schema==null ? table : schema + '.' + table );  

  40. log.info(sql);  

  41. }  

  42.  

  43. private void getNext(Connection conn) throws HibernateException {  

  44. try {  

  45. PreparedStatement st = conn.prepareStatement(sql);  

  46. ResultSet rs = st.executeQuery();  

  47. if ( rs.next() ) {  

  48. next = rs.getLong(1) + 1;  

  49. }  

  50. else {  

  51. next = 1l;  

  52. }  

  53. }catch(SQLException e)  

  54. {  

  55. throw new HibernateException(e);  

  56. }  

  57. finally {  

  58. try{  

  59. conn.close();  

  60. }catch(SQLException e)  

  61. {  

  62. throw new HibernateException(e);  

  63. }  

  64. }  

  65. }  

配置:
在對應的hbm文件里面將id的配置如下:

<id name="id" type="long" column="id" > <generator class="hibernate.IncrementGenerator" /> </id>

到此,關于“Hibernate實例分析”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

温泉县| 丰城市| 蛟河市| 江永县| 静海县| 焦作市| 桂平市| 蓬安县| 纳雍县| 章丘市| 巴彦淖尔市| 镇沅| 汽车| 扶沟县| 通许县| 吉水县| 铁岭县| 秦安县| 齐齐哈尔市| 林甸县| 上思县| 柳林县| 平顶山市| 平顺县| 治县。| 布尔津县| 原阳县| 德格县| 中阳县| 青阳县| 景德镇市| 会昌县| 讷河市| 澳门| 沙湾县| 肥东县| 铁岭县| 金阳县| 四会市| 绥江县| 镇巴县|