Hibernate常用的接口和类---Configuration类和作用
Posted NEWHOM
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hibernate常用的接口和类---Configuration类和作用相关的知识,希望对你有一定的参考价值。
Configuration作用:
加载Hibernate配置文件,可以获取SessionFactory对象
加载方式:
1.加载配置文件
Configuration configuration = new Configuration();
2.加载映射文件
使用porperties配置文件的方式
configuration.addResource("cn/itcast/domain/Student.hbm.xml");
使用XML配置文件的方式
config.configure();
如果使用XML方式可以简化操作,且不用书写映射文件路径
Configuration configuration = new Configuration().configure();
以上是关于Hibernate常用的接口和类---Configuration类和作用的主要内容,如果未能解决你的问题,请参考以下文章