亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

安吉县| 启东市| 永和县| 桓台县| 衡阳市| 长岭县| 宁国市| 萍乡市| 阿克苏市| 乌什县| 贵定县| 靖西县| 通海县| 南乐县| 扎赉特旗| 广宁县| 双峰县| 河北区| 仁怀市| 新乐市| 襄垣县| 界首市| 义马市| 台东县| 靖远县| 涞源县| 屏边| 曲水县| 泽库县| 大竹县| 米易县| 华阴市| 汤阴县| 湛江市| 宝丰县| 辉南县| 凯里市| 齐河县| 皋兰县| 增城市| 山丹县|