什么是Hibernate:
Hibernate
是一个开放源代码的对象关系映射
框架,它对JDBC进行了非常轻量级的对象封装,它将POJO与数据库表建立映射关系,是一个全自动的 orm框架,hibernate可以自动生成SQL语句,自动执行,使得Java程序员可以随心所欲的使用对象编程思维来操纵数据库。 Hibernate可以应用在任何使用JDBC的场合,既可以在Java的客户端程序使用,也可以在Servlet/JSP的Web应用中使用,最具革命意义
的是,Hibernate可以在应用EJB的J2EE架构中取代CMP,完成数据持久化的重任。
Hibernate 位于持久层
对象关系映射:(ORM)
ORM
:Object Relational Mapping。 对象关系映射。开发语言用的是Java,面向对象的(Object)。使用的数据库是关系型数据库(Relational)。就是将对象与数据库中的表建立一种映射关系,操作对象就可以操作这个表。
Hibernate 入门:
下载 Hibernate
下载地址:
https://sourceforge.net/projects/hibernate/files/hibernate-orm/5.0.7.Final/下载完
Hibernate
并解压后,目录中包含一系列的子目录,这些子目录分别用于存放不同功能的文件,主要如下:documentation
文件夹: 存放 Hibernate 的相关文档,包括参考文档、API文档。lib
文件夹: 存放 Hibernate 编译和运行所依赖的包。其中require子目录下包含了运行 Hibernate 项目的 jar 包。project
文件夹: 存放 Hibernate 相关源代码。
导入相关包(搭建环境)
a. Hibernate 包
D:\hibernate-release-5.0.7.Final\lib\required\
下所有jar包b. 日志记录包
log4j-1.2.16.jar
slf4j-api-1.6.1.jar
slf4j-log4j12-1.7.2.jar
c. 数据库驱动包
mysql-connector-java-5.1.7-bin.jar
建立数据库及表
12345678910CREATE TABLE `cst_customer` (`cust_id` bigint(32) NOT NULL AUTO_INCREMENT COMMENT '客户编号(主键)',`cust_name` varchar(32) NOT NULL COMMENT '客户名称(公司名称)',`cust_source` varchar(32) DEFAULT NULL COMMENT '客户信息来源',`cust_industry` varchar(32) DEFAULT NULL COMMENT '客户所属行业',`cust_level` varchar(32) DEFAULT NULL COMMENT '客户级别',`cust_phone` varchar(64) DEFAULT NULL COMMENT '固定电话',`cust_mobile` varchar(16) DEFAULT NULL COMMENT '移动电话',PRIMARY KEY (`cust_id`)) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;创建实体类
持久化类是应用程序中的业务实体类,这里的持久化是指类的对象能够被持久化保存到数据库中。Hibernate 使用普通 Java 对象,(Plain Old Java Object),即 POJO 的编程模式来进行持久化。POJO 类中包含的是与数据库表相对应的各个属性,这些属性通过 gitter 和 setter 方法来访问,对外部隐藏了内部的实现细节。
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253public 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;}}创建映射文件
1234567891011121314151617181920212223"-//Hibernate/Hibernate Mapping DTD 3.0//EN""http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"><?xml version="1.0" encoding="UTF-8"?>"-//Hibernate/Hibernate Mapping DTD 3.0//EN""http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"><hibernate-mapping><!-- ORM:Object Relational Mapping,将实体类O和数据库的表R 建立映射关系 --><class name="com.cc.hibernate.domain.Customer" table="cst_customer"><!-- 类中的属性与表中的主键对应 --><id name="cust_id" column="cust_id"><generator class="native"/></id><!-- 类中的属性与表中的字段对应 --><property name="cust_name" column="cust_name"/><property name="cust_source" column="cust_source"/><property name="cust_industry" column="cust_industry"/><property name="cust_level" column="cust_level"/><property name="cust_phone" column="cust_phone"/><property name="cust_mobile" column="cust_mobile"/></class></hibernate-mapping>映射文件通常有一个命名规则:类名.hbm.xml
创建 Hibernate 的核心配置文件
123456789101112131415161718192021222324"-//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:///hibernate_day01</property><property name="hibernate.connection.username">root</property><property name="hibernate.connection.password">123</property><!-- 数据库的方言:根据底层的数据库生成不同的SQL --><property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property><!-- 配置显示SQL --><property name="hibernate.show_sql">true</property><!-- 配置格式化SQL --><property name="hibernate.format_sql">true</property><!-- 配置hbm2ddl --><property name="hibernate.hbm2ddl.auto">update</property><!-- 加载映射文件 --><mapping resource="com/cc/hibernate/domain/Customer.hbm.xml"/></session-factory></hibernate-configuration>编写测试代码
123456789101112131415161718192021222324252627public class HibernateDemo1 {/*** 保存操作*/public void demo1(){// 加载Hibernate的核心配置文件.Configuration configuration = new Configuration().configure();// 创建一个SessionFactory的对象.SessionFactory sessionFactory = configuration.buildSessionFactory();// 创建Session(相当于JDBC中的Connection)Session session = sessionFactory.openSession();// 开启事务:Transaction transaction = session.beginTransaction();// 完成操作:Customer customer = new Customer();customer.setCust_name("小岳岳");session.save(customer);// 提交事务transaction.commit();// 释放资源session.close();}}