Hibernate有很多值得学习的地方,这里我们主要介绍Hibernate配置文件,包括介绍XML文件格式等方面。
创新互联专注于商河网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供商河营销型网站建设,商河网站制作、商河网页设计、商河网站官网定制、重庆小程序开发服务,打造商河网络公司原创品牌,更为您提供商河网站排名全网营销落地服务。
有两种Hibernate配置文件格式,一种是XML,默认为Hibernate.cfg.xml,一种是properties,默认为Hibernate.properties不同的配置文件,对Hibernate的初始化方法是不一样的。
比如,如果采用properties文件作为Hibernate配置文件
那么初始化的代码大致为
- Configuration config = new Configuration();
- config.addClass(myclass.class);
如果Hibernate配置文件为XML,则
- Configuration config = new Configuration().config();
XML文件格式的配置文件不支持addClass方法!!!这是因为在Hibernate配置文件XML文件中,已经定义了Mpaaing文件,因此就不需要在用编码方式导入POJO文件了。
另:网上好多文章,甚至有的书都说,Hibernate的配置文件必须放在class的根目录,参考一下API,发现这个说法是不正确的,例如 Configuration config = new Configuration()。config(配置文件名);完全可以的。
所有config方法如下:
- addCacheableFile(File xmlFile)If a cached xmlFile + ".bin"
exists and is newer than xmlFile the ".bin" file will be read directly.- Configuration addClass(Class persistentClass)
Read a mapping from an application resource, using a convention.- Configuration addDirectory(File dir)
Read all mapping documents from a directory tree.- Configuration addDocument(org.w3c.dom.Document doc)
Read mappings from a DOM Document- Configuration addFile(File xmlFile) Read mappings from a particular XML file
- Configuration addFile(String xmlFile) Read mappings from a particular XML file
- void addFilterDefinition(FilterDefinition definition)
- Configuration addInputStream(InputStream xmlInputStream)
Read mappings from an InputStream- Configuration addJar(File jar) Read all mappings from a jar file
- Configuration addProperties(Properties extraProperties) Set the given properties
- Configuration addResource(String path)
Read mappings from an application resource trying different classloaders.- Configuration addResource(String path, ClassLoader classLoader)
Read mappings from an application resource- Configuration addURL(URL url) Read mappings from a URL
- Configuration addXML(String xml) Read mappings from a String
文章题目:浅析Hibernate配置文件
文章路径:http://www.shufengxianlan.com/qtweb/news49/129499.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联