🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
Hibernate的映射文件反映了持久化类和数据库表的映射信息,而Hibernate的配置文件则主要用来配置数据库连接以及Hibernate运行时所需要的各个属性的值,在src下面创建一个名为hibernate.cfg.xml的文件 ~~~ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <!-- #hibernate.dialect org.hibernate.dialect.MySQLDialect #hibernate.dialect org.hibernate.dialect.MySQLInnoDBDialect #hibernate.dialect org.hibernate.dialect.MySQLMyISAMDialect #hibernate.connection.driver_class com.mysql.jdbc.Driver #hibernate.connection.url jdbc:mysql:///test #hibernate.connection.username gavin #hibernate.connection.password --> <!-- 必要的配置:连接数据库的基本配置 --> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> <!-- 数据库url --> <property name="hibernate.connection.url">jdbc:mysql:///app</property> <!-- 数据库连接用户名 --> <property name="hibernate.connection.username">root</property> <!-- 数据库连接密码 --> <property name="hibernate.connection.password">root</property> <!-- 数据库方言 不同的数据库中,sql语法略有区别. 指定方言可以让hibernate框架在生成sql语句时.针对数据库的方言生成. sql99标准: DDL 定义语言 库表的增删改查 DCL 控制语言 事务 权限 DML 操纵语言 增删改查 注意: MYSQL在选择方言时,请选择最短的方言. --> <!-- Hibernate的属性 --> <!-- Hibernate的方言,根据配置的方言生成对应的sql语言 --> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> <!-- 将hibernate生成的sql语句打印到控制台 --> <property name="hibernate.show_sql">true</property> <!-- 将hibernate生成的sql语句格式化(语法缩进) --> <property name="hibernate.format_sql">true</property> <!-- Hibernate的hbm2ddl(数据定义语言:create drop alter ...)属性 --> <!-- hbm2ddl.auto的取值 * none : 不用Hibernate自动生成表. * create : 每次都会创建一个新的表.(测试) * create-drop : 每次都会创建一个新的表,执行程序结束后删除这个表(测试) * update : 如果数据库中有表,使用原来的表,如果没有表,创建一个新的表,可以更新表结构 * validate : 只会使用原有的表,对映射关系进行校验 --> <property name="hibernate.hbm2ddl.auto">update</property> <!-- Hibernate加载机制 --> <!-- 引入orm元数据 路径书写: 填写src下的路径 --> <mapping resource="cn/domain/Customer.hbm.xml"/> </session-factory> </hibernate-configuration> ~~~ 该配置文件设置了数据库连接的相关属性以及其他的一些常用属性,并且通过mapping的resource属性将对象的映射信息加入到了Hibernate的配置文件中 ![](https://box.kancloud.cn/25dbd161e2ad440310a138efc613f081_1522x832.png) ![](https://box.kancloud.cn/af1c6e008ac6a1492f6cc97a911c1f8f_1680x464.png) ![](https://box.kancloud.cn/8a335319f8551ab14691bc6fd698bec7_1668x632.png) ![](https://box.kancloud.cn/aeba67bb7bd52ce787742fbc4a4c370b_1684x846.png) 关于hibernate的映射文件中类型问题 对于type属性它的取值,可以有三种: 1. java中的数据类型 2. hibernate中的数据类型 3. SQL的数据类型 ![](https://box.kancloud.cn/5f77e7d5235a512bba725ff05c362750_432x81.png) c3po连接池 ![](https://box.kancloud.cn/624179299f94eb11f62ebbdf6a29abe1_698x228.png) # Hibernate执行原理总结 hibernate工作原理: 1、通过Configuration().configure();读取并解析hibernate.cfg.xml配置文件。 2、由hibernate.cfg.xml中的<mappingresource="com/xx/User.hbm.xml"/>读取解析映射信息。 3、通过config.buildSessionFactory();//得到sessionFactory。 4、sessionFactory.openSession();//得到session。 5、session.beginTransaction();//开启事务。 6、persistent operate; 7、session.getTransaction().commit();//提交事务 8、关闭session; 9、关闭sessionFactory;