程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Hibernate的兩種配置文件格式

Hibernate的兩種配置文件格式

編輯:關於JAVA

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文件中,已經定義了Mpaaing文件,因此就不需要在用編碼方式導入POJO文件了。

另:網上好多文章,甚至有的書都說,Hibenate的配置文件必須放在class的根目錄,參考一下API,發現這個說法是不正確的,例如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
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved