hibernate-config.xml配置

来源:互联网 发布:建筑安全事故数据 编辑:程序博客网 时间:2024/06/06 02:58

<!DOCTYPE hibernate-configuration PUBLIC
 "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
 "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
 <session-factory>
 <property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
 <property name="hibernate.connection.url">jdbc:oracle:thin:@localhost:1521:inspur</property>
 <property name="hibernate.connection.username">scott</property>
 <property name="hibernate.connection.password">tiger</property>
 <property name="hibernate.dialect">org.hibernate.dialect.Oracle9Dialect</property>
 
 <mapping resource="com/inspur/po/Users.hbm.xml"/>
 
 </session-factory>
</hibernate-configuration>

原创粉丝点击