科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道不同配置文件的初始化Hibernate心得

不同配置文件的初始化Hibernate心得

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

针对不同格式的Hibernate配置文件,初始化Hibernate的方法也是不一样的。主要是addClass方法。

作者:baggio785 来源:CSDN 2008年2月29日

关键字: java 初始化 Hibernate

  • 评论
  • 分享微博
  • 分享邮件

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

 以上为小弟刚接触Hibernate的一个总结,不正确的地方还请各位多多指教!!

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章