Hibernate框架_搭建第一个Hibernate框架
程序员文章站
2022-04-09 10:13:40
一、eclipse搭建 A.创建动态web项目 New-->Dynamic web project(web project) B.导入jar包 1.数据库驱动包 2.hibernate开发必须jar包(去官网下载hibernate,解压后里面lib-->required,里面jar包是hiberna ......
一、eclipse搭建
a.创建动态web项目
new-->dynamic web project(web project)
b.导入jar包
1.数据库驱动包
2.hibernate开发必须jar包(去官网下载hibernate,解压后里面lib-->required,里面jar包是hibernate必须jar包)
3.日志记录包
c.创建表(也可以不创建)
d.创建实体类(数据库中如一个客户表就是客户实体,用java语言描述出来)
public class customer { private long cust_id; private string cust_name; private string cust_source; private string cust_industry; private string cust_level; private string cust_phone; private string cust_mobile; public long getcust_id() { return cust_id; } public void setcust_id(long cust_id) { this.cust_id = cust_id; } public string getcust_name() { return cust_name; } public void setcust_name(string cust_name) { this.cust_name = cust_name; } public string getcust_source() { return cust_source; } public void setcust_source(string cust_source) { this.cust_source = cust_source; } public string getcust_industry() { return cust_industry; } public void setcust_industry(string cust_industry) { this.cust_industry = cust_industry; } public string getcust_level() { return cust_level; } public void setcust_level(string cust_level) { this.cust_level = cust_level; } public string getcust_phone() { return cust_phone; } public void setcust_phone(string cust_phone) { this.cust_phone = cust_phone; } public string getcust_mobile() { return cust_mobile; } public void setcust_mobile(string cust_mobile) { this.cust_mobile = cust_mobile; } @override public string tostring() { return "customer [cust_id=" + cust_id + ", cust_name=" + cust_name + ", cust_source=" + cust_source + ", cust_industry=" + cust_industry + ", cust_level=" + cust_level + ", cust_phone=" + cust_phone + ", cust_mobile=" + cust_mobile + "]"; } }
e.根据实体创建映射文件(统一一下文件命名规范:类名.hbm.xml。文件位置一般和实体类放在一起)
customer.hbm.xml <?xml version="1.0" encoding="utf-8"?> <!doctype hibernate-mapping public "-//hibernate/hibernate mapping dtd 3.0//en" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <hibernate-mapping> <class name="com.xxx.pojo.customer" table="cst_customer"> <id name="cust_id" column="cust_id">
<!-- 主键生成策略 --> <generator class="native"></generator> </id> <property name="cust_name" column="cust_name"></property> <property name="cust_source" column="cust_source"></property> <property name="cust_industry" column="cust_industry"></property> <property name="cust_level" column="cust_level"></property> <property name="cust_phone" column="cust_phone"></property> <property name="cust_mobile" column="cust_mobile"></property> </class> </hibernate-mapping>
标签及其属性所代表的含义:
class标签用来建立类和表的关系映射 *name 表示该类的全路径(带包路径) *table 与该类映射的表名,如果表名和类名一致,表名可以省略不写 *catalog:数据库名称,可以省略
id标签用来建立类中属性域表中主键字段的对应 *name 类中的属性名 *column 表中的字段名,如果类中的属性名和表中的字段名一致,可以省略column *length:字段的长度,用于hibernate帮你建表时候指定表中字段的长度,默认为sql类型中长度最大值 *type:类型,有三种写法: java数据类型:如java.lang.string hibernate类型: string (type属性默认值) sql类型: 如varchar
对于type扩展:
property标签:用来建立表中类的普通属性域表中普通字段的对应 这里面也同样有四个属性,name,column,length,type,和上面id标签用法一样
f.创建hibernate配置文件。(该文件命名为hibernate.cfg.xml)
<?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="hibernate.connection.driver_class">com.mysql.jdbc.driver</property> <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernate_crm?useunicode=true&characterencoding=utf8</property> <property name="hibernate.connection.username">root</property> <property name="hibernate.connection.password">root</property> <!-- 配置hibernate方言 --> <property name="hibernate.dialect">org.hibernate.dialect.mysqldialect</property> <!-- hibernate显示发送sql语句 --> <property name="hibernate.show_sql">true</property> <!-- hibernate格式化sql语句 --> <property name="hibernate.format_sql">true</property> <!-- 数据定义语言,主要是对表的操作 --> <property name="hibernate.hbm2ddl.auto">update</property> <!-- hibernate映射文件加载 --> <mapping resource="com/xxx/pojo/customer.hbm.xml"/> </session-factory> </hibernate-configuration>
对于hibernate.hbm2dd.autol属性,有四个值
-
-
- none:不用hibernate自动生成表
- create:每次运行hibernate都会创建一个新的表
- create-drop:每次创建都会创建一个新的表,执行程序结束后删除这个表
- update:如果数据库中有该表,使用数据库中原有的表,如果没有,hibernate会帮你创建一个新表,可以更新表的结构
- validate:只会使用原有的表。对映射关系进行校验
-
g.编写测试类
/** * 插入数据 * */ @test public void demo1() { // 加载配置文件 configuration cfg = new configuration().configure("hibernate.cfg.xml"); // 根据配置文件获取session工厂对象 sessionfactory sessionfactory = cfg.buildsessionfactory(); // 从session工厂里面获取session对象 session session = sessionfactory.opensession(); // 开启事务 transaction tx = session.begintransaction(); // 保存更新数据 customer cust = new customer(); cust.setcust_name("张三"); cust.setcust_source("介绍"); cust.setcust_phone("13085469875"); serializable uid = session.save(cust); system.out.println(uid); // 提交事务 tx.commit(); // 关闭资源 session.close(); }
至此,eclipse手动搭建的hibernate框架就创建好了。
二.myeclipse自动创建hibernate框架
a.创建web项目
b.增加hibernate框架
右键项目名称 选择configure facet--->install hibernate facet(安装hibernate方面)
接下来直接finish。
c.生成hibernate映射文件
myeclipse创建hibernate就大致这样
上一篇: 中年人成了职场上被嫌弃的少数派
推荐阅读
-
(Mac) IDEA上搭建TestNG框架
-
javaweb各种框架组合案例(六):springboot+spring data jpa(hibernate)+restful
-
Django框架搭建的简易图书信息网站案例
-
Android 搭建MVP+Retrofit+RxJava网络请求框架解析
-
JQuery+Ajax+Struts2+Hibernate框架整合实现完整的登录注册
-
给Python的Django框架下搭建的BLOG添加RSS功能的教程
-
如何在springBoot下搭建日志框架
-
在windows下快速搭建web.py开发框架方法
-
.netCore+Vue 搭建的简捷开发框架
-
使用netbeans搭建jsf+spring框架的方法