跨向Hibernate(二)
2008-02-23 09:52:30来源:互联网 阅读 ()
重新在Eclipse下再来过一遍,步骤有些不同。(eclipse+myEclipse)
1、创建一个普通的Java项目
2、加入用myeclipse导入Hibernate的包
3、加入MySQL的JDBC包(应该先在myeclipse中配置数据库的服务)
4、创建一下数据POJO(忘了是不是这么叫,先这么写着吧)
5、在项目根结点用右键,查看项目属性,在Myeclipse-hibernate中添加(标准)Standard Hibernate包
6、在项目根结点用右键,运行myeclipse中的run-XDocLet,生成POJO的hbm文件
7、在项目根结点用右键,运行myeclipse中的add Hibernate Capabilities …(这个功能好象只能使用一次)
在向导中a、加入数据库的接入方式 b、加入POJO的hbm文件 c、可指定一个目录自动生成一个SessionFactory类
8、创建一个测试类,运行;例如:
public class Test {
public static void main(String[] args) throws HibernateException {
Session aSession = HibernateSessionFactory.currentSession();
Transaction tx=aSession.beginTransaction();
Cat cat=new Cat();
cat.setName("Tomcat");
cat.setSex("T");
cat.setWeight(12.1);
aSession.save(cat);
tx.commit();
HibernateSessionFactory.closeSession();
}
}
附:
可以看到,前前后后总共就只创建了两个类,其他全部自动生成。
要特别说明的是,POJO中一定要加入XDoclet的标签,不然Hibernate会怠工,hbm文件是生成不出来的。示例如下:
/*
* Created on 2005-4-26
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.hibernate.test;
/**
* @author julysea
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
/**
* @hibernate.class
* table="cat"
*/
public class Cat {
String cat_id;
String name;
String sex;
double weight;
public Cat() {
}
/**
* @hibernate.id
* column = "cat_id"
* unsaved-value = "true"
* generator-class = "uuid.hex"
* @return Returns the cat_id.
*/
public String getId() {
return cat_id;
}
/**
* @param cat_id The cat_id to set.
*/
public void setId(String cat_id) {
this.cat_id = cat_id;
}
/**
* @hibernate.property
* @return Returns the name.
*/
public String getName() {
return name;
}
/**
* @param name The name to set.
*/
public void setName(String name) {
this.name = name;
}
/**
* @hibernate.property
* @return Returns the sex.
*/
public String getSex() {
return sex;
}
/**
* @param sex The sex to set.
*/
public void setSex(String sex) {
this.sex = sex;
}
/**
* @hibernate.property
* @return Returns the weight.
*/
public double getWeight() {
return weight;
}
/**
* @param weight The weight to set.
*/
public void setWeight(double weight) {
this.weight = weight;
}
}
上一篇: 跨向Hibernate(一)
下一篇: 对极限编程四个核心的理解(二)
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash