日期:2014-05-19 浏览次数:20759 次
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory name="foo"> <property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property> <property name="hibernate.connection.url">jdbc:oracle:thin:@127.0.0.1:1521:test</property> <property name="hibernate.connection.username">test</property> <property name="hibernate.connection.password">test</property> <property name="hibernate.dialect">org.hibernate.dialect.Oracle10gDialect</property> <property name="hiernate.hbm2ddl.auto">validate</property> <property name="hibernate.show_sql">true</property> <mapping resource="com/asm/hibernate/domain/Student.hbm.xml"/> <mapping resource="com/asm/hibernate/domain/Teacher.hbm.xml"/> </session-factory> </hibernate-configuration>