浅析Hibernate配置文件
创始人
2024-06-07 16:40:17
0

Hibernate有很多值得学习的地方,这里我们主要介绍Hibernate配置文件,包括介绍XML文件格式等方面。

有两种Hibernate配置文件格式,一种是XML,默认为Hibernate.cfg.xml,一种是properties,默认为Hibernate.properties不同的配置文件,对Hibernate的初始化方法是不一样的。

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

那么初始化的代码大致为

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

如果Hibernate配置文件为XML,则

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

XML文件格式的配置文件不支持addClass方法!!!这是因为在Hibernate配置文件XML文件中,已经定义了Mpaaing文件,因此就不需要在用编码方式导入POJO文件了。

另:网上好多文章,甚至有的书都说,Hibernate的配置文件必须放在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. Hibernate可行性全面概括
  2. Hibernate Sequence基础描述
  3. 浅析Hibernate使用EhCache
  4. Hibernate的一级Cache
  5. Hibernate update浅谈

相关内容

热门资讯

如何允许远程连接到MySQL数... [[277004]]【51CTO.com快译】默认情况下,MySQL服务器仅侦听来自localhos...
如何利用交换机和端口设置来管理... 在网络管理中,总是有些人让管理员头疼。下面我们就将介绍一下一个网管员利用交换机以及端口设置等来进行D...
施耐德电气数据中心整体解决方案... 近日,全球能效管理专家施耐德电气正式启动大型体验活动“能效中国行——2012卡车巡展”,作为该活动的...
Windows恶意软件20年“... 在Windows的早期年代,病毒游走于系统之间,偶尔删除文件(但被删除的文件几乎都是可恢复的),并弹...
20个非常棒的扁平设计免费资源 Apple设备的平面图标PSD免费平板UI 平板UI套件24平图标Freen平板UI套件PSD径向平...
德国电信门户网站可实时显示全球... 德国电信周三推出一个门户网站,直观地实时提供其安装在全球各地的传感器网络检测到的网络攻击状况。该网站...
着眼MAC地址,解救无法享受D... 在安装了DHCP服务器的局域网环境中,每一台工作站在上网之前,都要先从DHCP服务器那里享受到地址动...
为啥国人偏爱 Mybatis,... 关于 SQL 和 ORM 的争论,永远都不会终止,我也一直在思考这个问题。昨天又跟群里的小伙伴进行...