日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
Hibernate的兩種配置文件格式

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

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

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

那么初始化的代碼大致為

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

如果配置文件為XML,則

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

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

另:網(wǎng)上好多文章,甚至有的書都說,Hibenate的配置文件必須放在class的根目錄,參考一下API,發(fā)現(xiàn)這個說法是不正確的,例如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的兩種配置文件格式


文章標(biāo)題:Hibernate的兩種配置文件格式
網(wǎng)站URL:http://www.5511xx.com/article/dpochoi.html