hibernate-config.xml配置

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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章