<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory name="foo">
<!--数据库连接配置4项 -->
<!-- 数据库连接字符串 -->
<property name="connection.url">jdbc:oracle:thin:@127.0.0.1:1521:orcl</property>
<!-- 数据库用户名 -->
<property name="connection.username">scott</property>
<!-- 数据库密码-->
<property name="connection.password">tiger</property>
<!-- 数据库连接驱动-->
<property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<!--数据库方言(数据类型的配置) -->
<property name="dialect">org.hibernate.dialect.Oracle10gDialect</property>
<!--数据库相关配置 -->
<property name="show_sql">true</property>
<!--格式化 -->
<property name="format_sql">true</property>
<!--映射,有几张表就配置几个映射 -->
<mapping resource="org/hibernate_one/entity/Dept.hbm.xml"/>
</session-factory>
</hibernate-configuration>
hibernate配置详情1(hibernate.cfg.xml)
原创穆雄雄的博客 ©著作权
文章标签 Hibernate教程 Java 文章分类 Java 后端开发
-
Hibernate - hibernate.cfg.xml配置文件详解
Hibernate 配置文件主要用于配置数据库连接和 Hibernate 运行时所需的各种属性。每个 Hibernate 配置文件对应一个 Configuration
Hibernate配置文件 hibernate.cfg.xml hibernate 数据库 sql -
Hibernate学习之hibernate.cfg.xml
root jdbc:mysql://localhost:3306/bookstore org.hibernate.dialect.MySQ...
hibernate 数据库 xml mysql sql