您的位置:首页 > 数据库 > Oracle

hibernate.cfg.xml 配置模板

2010-07-02 00:24 531 查看
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<!-- Generated by MyEclipse Hibernate Tools.                   -->
<hibernate-configuration>

 <session-factory>
  <property name="connection.username">scott</property>
  <property name="connection.url">jdbc:oracle:thin:@localhost:1521:myoradb</property>
  <property name="dialect">org.hibernate.dialect.Oracle9Dialect</property>
  <property name="myeclipse.connection.profile">oracle</property>
  <property name="connection.password">tiger</property>
  <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
  <property name="show_sql">true</property>
  <mapping resource="com/pojos/Emplooyes.hbm.xml" />
  <mapping resource="com/pojos/Departments.hbm.xml" />
  <mapping resource="com/pojos/Attendance.hbm.xml" />
  <mapping resource="com/pojos/Roles.hbm.xml" />
  <mapping resource="com/pojos/Menus.hbm.xml" />
  <mapping resource="com/pojos/Ctypes.hbm.xml" />
  <mapping resource="com/pojos/Messages.hbm.xml" />
  <mapping resource="com/pojos/Conlist.hbm.xml" />
  <mapping resource="com/pojos/Myschedule.hbm.xml" />
  <mapping resource="com/pojos/Notetype.hbm.xml" />
  <mapping resource="com/pojos/Notes.hbm.xml" />

 </session-factory>

</hibernate-configuration>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息