使用Myeclipse开发hibernate程序

Hibernate是一种 O/R Mapping 的工具,它实现了关系型实体到对象的映射。
下面来看看如何在Myeclipse中实现一个简单的hibernate程序(Eclipse3.2+Myeclipse5)。
步骤1 :首先在MySQL中建立一个表login:
使用Myeclipse开发hibernate程序_第1张图片
步骤2:在Eclipse中新建java project,就取名叫hibernate吧,在project图标上单击右键,选择MyEclipse->Add hibernate capabilities,选择默认配置即可。
使用Myeclipse开发hibernate程序_第2张图片
步骤3:在hibernate.cfg.xml文件中设置中配置数据库连接,其他默认即可:
使用Myeclipse开发hibernate程序_第3张图片
步骤4:打开DB Broswer,在DB Brower中选择表login,单击右键,选择Hibernate  Reverse Engineering,配置参看图。
4.1打开DB Browser。
使用Myeclipse开发hibernate程序_第4张图片
4.2选择Hibernate Reverse Engineering

4.3 选择Hibernate mapping file for each database table
使用Myeclipse开发hibernate程序_第5张图片
4.4 ID Generator选择identity。


步骤5:在Login.hbm.xml文件单击右键,选择MyEclipse->Generate POJOS,生成对应的POJO类Login。

步骤6 :编写测试类:
package org.michael.hibernate;

import org.hibernate.Session;
import org.hibernate.Transaction;

public class Test {

    public static void main(String[] args) {
        Login login=new Login();
        Session session=HibernateSessionFactory.getSession();
        Transaction tx=session.beginTransaction();
        login.setName("michael");
        login.setPassword("sdust");
        session.save(login);
        tx.commit();
    }

}
运行后,查看MySQL数据库中的Login表,新记录应经添加,哈哈!

你可能感兴趣的:(使用Myeclipse开发hibernate程序)