日期:2014-05-18 浏览次数:20709 次
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="connection.url">jdbc:oracle:thin:@localhost:1521:lhh113</property>
<property name="connection.username">system</property>
<property name="connection.password">tiger</property>
<property name="dialect">org.hibernate.dialect.OracleDialect</property>
<property name="show_sql">true</property>
<property name="format_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<property name="hbm2ddl.auto">update</property>
<mapping class="model.Student"/>
<mapping class="model.Teacher"/>
</session-factory>
</hibernate-configuration>
@Test
public void test3() {
Teacher t = new Teacher();
t.setT_id(2);
t.setT_name("asd");
t.setT_sal("1");
t.setT_age(2);
t.setT_birthday(new Date());
Configuration c = new Configuration().configure();
SessionFactory sf = c.buildSessionFactory();
Session s = sf.openSession();
s.beginTransaction();
s.save(t);
s.getTransaction().commit();
s.close();
sf.close();
}