hibernate.hbm.xml
Posted 大河虾
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate.hbm.xml相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- <property name="hibernate.connection.url">jdbc:mysql://地址/hdb</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">pck</property> -->
<!-- mysql数据的方言 -->
<!--<property name="dialect">org.hibernate.dialect.MySQLDialect</property> -->
<property name="hibernate.connection.url">jdbc:oracle:thin:@地址:1521:orcl</property>
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="hibernate.connection.username">customer</property>
<property name="hibernate.connection.password">customer</property>
<!-- Oracle数据的方言 -->
<property name="dialect">org.hibernate.dialect.OracleDialect</property>
<!-- 查看sql语句 -->
<property name="show_sql">true</property>
<!-- 自动生成表 -->
<property name="hibernate.hbm2ddl.auto">update</property>
<!-- 路径 -->
<mapping resource="com/model/Teacher.hbm.xml"/>
</session-factory>
</hibernate-configuration>
以上是关于hibernate.hbm.xml的主要内容,如果未能解决你的问题,请参考以下文章