Hibernate-Configuration:配置对象

本文深入探讨Hibernate的Configuration类,它是初始化Hibernate会话工厂的关键。通过Configuration对象,我们可以加载和配置Hibernate的属性,建立数据库连接,映射实体类等。
摘要由CSDN通过智能技术生成

Configuration 配置对象


        An instance of Configuration allows the application to specify properties and mapping documents to be used when creating a SessionFactory. Usually an application will create a single Configuration, build a single instance of SessionFactory and then instantiate Sessions in threads servicing client requests. The Configuration is meant only as an initialization-time object. SessionFactorys are immutable and do not retain any association back to the Configuration.

        Configuration 实例允许应用程序指定在创建SessionFactory时使用的属性和映射文档。通常,应用程序将创建单个配置,构建SessionFactory的单个实例,然后在服务客户端请求的线程中实例化会话。配置仅作为初始化时间对象。SessionFactorys是不可变的,并且不保留任何关联到配置。

    说白了,Configuration 对象主要用于对Hibernate框架加载映射文件,在Hibernate启动的过程中,Configuration 对象的实例首先定位映射文档的位置,然后读取这些配置,创建一个SessionFactory对象,Configuration 对象是Hibernate在启动时遇到的第一个对象。

    Hibernate默认加载src目录下的hibernate.cfg.xml配置文件,如果不想使用默认的hibernate.cfg.xml配置文件,而是使用指定目录下的配置文件,需要向configure()方法传递一个文件路径参数:

Configuration config = new Configuration().configure("xml文件位置");

    如果想使用src下config文件夹内的hibernate.cfg.xml文件,只需要将文件位置加入configure()中即可

Configuration config = new Configuration().configure("/config/hibernate.cfg.xml");

    Hibernate除了可以使用Configuration对象加载核心配置文件外,还可以使用该对象加载映射文件,这样就可以使用properties文件作为hibernate的核心配置文件,其他属性可以使用key=value的格式来设置。

Configuration configuration = new Configuration.configure("xml文件位置");
configuration.addResource("实体类.hbm.xml")
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值