hibernate.cfg.xml 配置模板

来源:互联网 发布:东方财富 数据 编辑:程序博客网 时间:2024/06/08 09:38

<?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>

原创粉丝点击