溫馨提示×

溫馨提示×

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

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

Hibernate如何初始化

發(fā)布時間:2021-12-01 10:33:57 來源:億速云 閱讀:127 作者:小新 欄目:編程語言

小編給大家分享一下Hibernate如何初始化,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

Hibernate有兩種配置文件格式,一種是XML,默認為hibernate.cfg.xml,一種是properties,默認為Hibernate.properties。不同的配置文件,對Hibernate初始化方法是不一樣的

比如,如果采用properties文件作為配置文件,那么Hibernate初始化的代碼大致為

Configuration config = new Configuration();  config.addClass(myclass.class);

如果配置文件為XML,則

Configuration config = new Configuration().config();

XML文件格式的配置文件不支持addClass方法?。?!這是因為在配置文件XML文件中,已經定義了Mpaaing文件,因此就不需要在用編碼方式導入POJO文件了。

另:網上好多文章,甚至有的書都說,Hibenate的配置文件必須放在class的根目錄,參考一下API,發(fā)現(xiàn)這個說法是不正確的,例如 Configuration config = new Configuration().config(配置文件名);完全可以的。

所有config方法如下:

  1. addCacheableFile(File xmlFile)  

  2.  

  3. If a cached xmlFile + ".bin" exists and is newer than xmlFile the ".
    bin" file will be read directly.  

  4.  

  5. Configuration addClass(Class persistentClass)  

  6. Read a mapping from an application resource, using a convention.  

  7.  

  8. Configuration addDirectory(File dir)  

  9. Read all mapping documents from a directory tree.  

  10.  

  11. Configuration addDocument(org.w3c.dom.Document doc)  

  12. Read mappings from a DOM Document  

  13.  

  14. Configuration addFile(File xmlFile)  

  15. Read mappings from a particular XML file  

  16.  

  17. Configuration addFile(String xmlFile)  

  18. Read mappings from a particular XML file  

  19.  

  20. void addFilterDefinition(FilterDefinition definition)  

  21.  

  22. Configuration addInputStream(InputStream xmlInputStream)  

  23. Read mappings from an InputStream  

  24.  

  25. Configuration addJar(File jar)  

  26. Read all mappings from a jar file  

  27.  

  28. Configuration addProperties(Properties extraProperties)  

  29. Set the given properties  

  30.  

  31. Configuration addResource(String path)  

  32. Read mappings from an application resource trying different classloaders.  

  33.  

  34. Configuration addResource(String path, ClassLoader classLoader)  

  35. Read mappings from an application resource  

  36.  

  37. Configuration addURL(URL url)  

  38. Read mappings from a URL  

  39.  

  40. Configuration addXML(String xml)  

  41. Read mappings from a String  

以上是“Hibernate如何初始化”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

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

AI