小編給大家分享一下Hibernate配置文件的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)科技有限公司專業(yè)互聯(lián)網(wǎng)基礎(chǔ)服務(wù)商,為您提供成都棕樹機(jī)房,高防服務(wù)器租用,成都IDC機(jī)房托管,成都主機(jī)托管等互聯(lián)網(wǎng)服務(wù)。
有兩種Hibernate配置文件格式,一種是XML,默認(rèn)為Hibernate.cfg.xml,一種是properties,默認(rèn)為Hibernate.properties不同的配置文件,對Hibernate的初始化方法是不一樣的。
比如,如果采用properties文件作為Hibernate配置文件
那么初始化的代碼大致為
Configuration config = new Configuration(); config.addClass(myclass.class);
如果Hibernate配置文件為XML,則
Configuration config = new Configuration().config();
XML文件格式的配置文件不支持addClass方法?。。∵@是因?yàn)樵贖ibernate配置文件XML文件中,已經(jīng)定義了Mpaaing文件,因此就不需要在用編碼方式導(dǎo)入POJO文件了。
另:網(wǎng)上好多文章,甚至有的書都說,Hibernate的配置文件必須放在class的根目錄,參考一下API,發(fā)現(xiàn)這個(gè)說法是不正確的,例如 Configuration config = new Configuration()。config(配置文件名);完全可以的。
所有config方法如下:
addCacheableFile(File xmlFile)If a cached xmlFile + ".bin"
exists and is newer than xmlFile the ".bin" file will be read directly.Configuration addClass(Class persistentClass)
Read a mapping from an application resource, using a convention.Configuration addDirectory(File dir)
Read all mapping documents from a directory tree.Configuration addDocument(org.w3c.dom.Document doc)
Read mappings from a DOM DocumentConfiguration addFile(File xmlFile) Read mappings from a particular XML file
Configuration addFile(String xmlFile) Read mappings from a particular XML file
void addFilterDefinition(FilterDefinition definition)
Configuration addInputStream(InputStream xmlInputStream)
Read mappings from an InputStreamConfiguration addJar(File jar) Read all mappings from a jar file
Configuration addProperties(Properties extraProperties) Set the given properties
Configuration addResource(String path)
Read mappings from an application resource trying different classloaders.Configuration addResource(String path, ClassLoader classLoader)
Read mappings from an application resourceConfiguration addURL(URL url) Read mappings from a URL
Configuration addXML(String xml) Read mappings from a String
以上是“Hibernate配置文件的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!