av激情亚洲男人的天堂国语,日韩欧美精品一中文字幕,无码av一区二区三区无码,国产又色又爽又刺激的a片,国产又色又爽又刺激的a片

Hibernate的兩種配置文件格式

Hibernate有兩種配置文件格式,一種是XML,默認(rèn)為hibernate.cfg.xml,一種是properties,默認(rèn)為hibernate.properties不同的配置文件,Hibernate有兩種配置文件格式,一種是XML,默認(rèn)為hibernate.cfg.xml,一種是properties,默認(rèn)為hibernate.properties

不同的配置文件,對Hibernate的初始化方法是不一樣的

比如,如果采用properties文件作為配置文件

那么初始化的代碼大致為

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

如果配置文件為XML,則

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

XML文件格式的配置文件不支持addClass方法?。?!這是因?yàn)樵谂渲梦募ML文件中,已經(jīng)定義了Mpaaing文件,因此就不需要在用編碼方式導(dǎo)入POJO文件了。

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

所有config方法如下:

    1 addCacheableFile(File xmlFile)
If a cached xmlFile + ".bin" exists and is newer than xmlFile the ".bin" file will be read directly.
2 Configuration addClass(Class persistentClass) 
Read a mapping from an application resource, using a convention.
3 Configuration addDirectory(File dir) 
Read all mapping documents from a directory tree.
4 Configuration addDocument(org.w3c.dom.Document doc) 
Read mappings from a DOM Document
5 Configuration addFile(File xmlFile) 
Read mappings from a particular XML file
6 Configuration addFile(String xmlFile) 
Read mappings from a particular XML file
7 void addFilterDefinition(FilterDefinition definition)
8 Configuration addInputStream(InputStream xmlInputStream) 
Read mappings from an InputStream
9 Configuration addJar(File jar) 
Read all mappings from a jar file
10 Configuration addProperties(Properties extraProperties) 
Set the given properties
11 Configuration addResource(String path) 
Read mappings from an application resource trying different classloaders.
12 Configuration addResource(String path, ClassLoader classLoader) 
Read mappings from an application resource
13 Configuration addURL(URL url) 
Read mappings from a URL
14 Configuration addXML(String xml) 
Read mappings from a String

您正在閱讀: Hibernate的兩種配置文件格式


文章題目:Hibernate的兩種配置文件格式
網(wǎng)站路徑:http://uogjgqi.cn/article/dpochoi.html
掃二維碼與項(xiàng)目經(jīng)理溝通

我們在微信上24小時(shí)期待你的聲音

解答本文疑問/技術(shù)咨詢/運(yùn)營咨詢/技術(shù)建議/互聯(lián)網(wǎng)交流