然后整理得:
C:hibernateMiddlegen-Hibernate-r5uildgen-srcHibernateSamplehibernate>dir
驱动器 C 中的卷是 本地磁盘
卷的序列号是 08DF-03E4
C:hibernateMiddlegen-Hibernate-r5uildgen-srcHibernateSamplehibernate 的目录
2005-03-22 19:04 <DIR> .
2005-03-22 19:04 <DIR> ..
2005-03-22 19:04 865 Book.hbm.xml
2005-03-22 19:01 1,148 Book.java
2 个文件 2,013 字节
2 个目录 1,528,754,176 可用字节
3.应用hibernate
在classpath配置 hibernate.cfg.xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-configuration
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd";>
<hibernate-configuration>
<!-- SessionFactory 配置 -->
<session-factory>
<!-- 数据库URL -->
<property name="hibernate.connection.url">
jdbc:jtds:sqlserver://127.0.0.1:1433/testbook
</property>
<!-- 数据库JDBC驱动 -->
<property name="hibernate.connection.driver_class">
net.sourceforge.jtds.jdbc.Driver
</property>
<!-- 数据库用户名 -->
<property name="hibernate.connection.username">sa</property> <!-- 数据库用户密码 -->
<property name="hibernate.connection.password">zh1107</property>
<!--dialect ,每个数据库都有其对应的Dialet以匹配其平台特性 -->
<property name="dialect">
net.sf.hibernate.dialect.SybaseDialect </property>
<!-- 是否将运行期生成的SQL输出到日志以供调试 --> <property name="hibernate.show_sql">True</property>
<!-- 是否使用数据库外连接 --> <property name="hibernate.use_outer_join">True</property>
<!-- 事务管理类型,这里我们使用JDBC Transaction --> <property name="hibernate.transaction.factory_class"> net.sf.hibernate.transaction.JDBCTransactionFactory
</property>
<!--映射文件配置,注意配置文件名必须包含其相对于根的全路径-->
<mapping resource="HibernateSample/hibernate/Book.hbm.xml" /> </session-factory>
</hibernate-configuration>
还有把hibernate-2.1下lib得.jar包引到classpath里。
Junit的测试,注意要junit包。HibernateTest.java
/*
* Created on 2005-3-20 dahe
*/
package test;import java.util.List;
import net.sf.hibernate.*;
import junit.framework.*;
import HibernateSample.hibernate.*;
import net.sf.hibernate.cfg.*;
public class HibernateTest extends TestCase {
Session session = null;
/**
* JUnit中setUp方法在TestCase初始化的时候会自动调用 一般用于初始化公用资源 此例中,用于初始化Hibernate Session
*/
protected void setUp() {
try {
/**
* 采用hibernate.properties配置文件的初始化代码: Configuration config = new
* Configuration(); config.addClass(TUser.class);
*/
// 采用hibernate.cfg.xml配置文件
// 请注意初始化Configuration时的差异:
// 1.Configuration的初始化方式
// 2.xml文件中已经定义了Mapping文件,因此无需再Hard Coding导入
// POJO文件的定义
Configuration config = new Configuration().configure();
SessionFactory sessionFactory = config.buildSessionFactory();
session = sessionFactory.openSession();
} catch (HibernateException e) {
e.printStackTrace();
}
}
/**
* * 与setUp方法相对应,JUnit TestCase执行完毕时,会自动调用tearDown方法 一般用于资源释放 * 此例中,用于关闭在setUp方法中打开的Hibernate Session
*/
protected void tearDown() {
try { session.close();
} catch (HibernateException e) {
e.printStackTrace();
}
}
/**
* 对象持久化(Insert)测试方法
*
* JUnit中,以”test”作为前缀的方法为测试方法,将被JUnit自动添加 到测试计划中运行
*/
public void testInsert() {
try {
Book user = new Book();
user.setBook("Emma");
user.setSn("asdfd");
Transaction tran=session.beginTransaction();
session.save(user);
tran.commit();
} catch (HibernateException e) {
e.printStackTrace();
Assert.fail(e.getMessage());
}
}
/**
* 对象读取(Select)测试 请保证运行之前数据库中已经存在name=’Erica’的记录
*/
public void testSelect() {
String hql = " from Book where book='Emma'";
try {
List userList = session.find(hql);
Book user = (Book) userList.get(0);
Assert.assertEquals(user.getBook(), "Emma");
} catch (HibernateException e) {
e.printStackTrace();
Assert.fail(e.getMessage());
}
}
}
测试通过