Configuration

Configuration 类负责管理Hibernate 的配置信息。首先它要初始化一些基本信息,如联数据的url/psw.....而这些资料包括对关联的.hbm.xml的映射都是在classpath下的hiberate.properties和hiberate.cfg.xml文件中配的。
Configuration config = new Configuration().configure();
Hibernate会自动在当前的CLASSPATH 中搜寻hibernate.cfg.xml文件并将其读取到内存中作为后继操作的基础配置。Configuration 类一般只有在获取SessionFactory时需要涉及,当获取SessionFactory 之后,由于配置信息已经由Hibernate 维护并绑定在返回的SessionFactory之上,因此一般情况下无需再对其进行操作。
如果要用自己写的xml来初始化配置:将你自己写的.cfg.xml文件放在classpath下面.用以下语句来初始化:
Configuration configBbs = new Configuration().configure(
          "/hibernateBbs.cfg.xml");

你可能感兴趣的:(Hibernate,xml,配置管理)