Hibernate_day01
程序员文章站
2022-06-13 20:22:50
...
Hibernate框架的学习路线
- 第一天:Hibernate的入门(Hibernate的环境搭建,Hibernate的API,hibernate的CRUD)
- 第二天:Hibernate的一级缓存,其他API
- 第三天:Hibernate的一对多配置、Hibernate的多对多配置
- 第四天:Hibernate的查询方式、抓取策略
CRM项目概述
Hibernate框架概述
框架的概述
什么是框架
框架指软件的半成品,已经完成了部分的功能
什么是Hibernate
- Hibernate:Hibernate是一个持久层的ORM框架
什么是ORM
- ORM:Object Relational Mapping(对象关系映射)。指的是将一个Java中的对象与关系型数据库中的表建立一种映射关系,从而操作对象就可以操作数据库中的表。
为什么要学习Hibernate
Hibernate入门
解压Hibernate
- documentation :Hibernate开发文档
- lib :Hibernate开发包
- required :Hibernate开发的必须得依赖包
- optional :Hibernate开发可选的jar包
- project :Hibernate提供的项目
创建一个项目,引入jar包
- 数据库驱动包
- Hibernate开发的必须得jar包
- Hibernate引入日志记录包
创建表
CREATE DATABASE hibernate_day01
# 创建客户表
CREATE 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;
创建实体类
package com.lld.hibernate.demo01;
public class Customer {
/**
* CREATE DATABASE hibernate_day01
# 创建客户表
CREATE 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;
*/
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 + "]";
}
}
创建映射
- 映射需要通过XML的配置文件来完成,这个配置文件可以任意命名。尽量统一命名规范(类名.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.lld.hibernate.demo01.Customer" table="cst_customer">
<!-- 建立类中的属性与表中的主键对应 -->
<id name="cust_id" column="cust_id" >
<generator class="native"/>
</id>
<!-- 建立类中的普通的属性和表的字段的对应 -->
<property name="cust_name" column="cust_name" length="32" />
<property name="cust_source" column="cust_source" length="32"/>
<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>
创建hibernate核心配置文件
- 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://39.106.68.251/hibernate_day01</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">1</property>
<!-- 配置Hibernate的方言 -->
<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>
<mapping resource="com/lld/hibernate/demo01/Customer.hbm.xml"/>
</session-factory>
</hibernate-configuration>
测试代码
package com.lld.hibernate.demo01;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.junit.Test;
public class HibernateDemo1 {
@Test
public void demo1(){
//1.加载hibernate的核心配置文件
Configuration configuration = new Configuration().configure();
//2.创建一个SessionFactory对象:类似于JDBC连接池
SessionFactory factory = configuration.buildSessionFactory();
//3.通过SessionFactory获取到session对象:类似于JDBC中的connection
Session session = factory.openSession();
//4.手动开启事务
Transaction transaction = session.beginTransaction();
//5.编写代码
Customer customer = new Customer();
customer.setCust_name("曲光光");
session.save(customer);
//6.事务提交
transaction.commit();
//7.资源释放
session.close();
}
}
hibernate常见配置
xml代码提示配置
Hibernate的映射配置
映射的配置
- 【class标签的配置】
- 标签用来建立类与表的映射关系
- 属性:
- name :类的全路径
- table :表名(类名与表名一致,table可以省略)
- catalog :数据库名
- 【id标签的配置】
- 标签用来建立类中的属性与表中的主键的对应关系
- 属性:
- name :类中的属性名
- column :表中的字段名(类中的属性名和表中的字段名如果一致,column可以省略)
- length :长度
- type :类型
- 标签用来建立类中的属性与表中的主键的对应关系
- 【property标签的配置】
- 标签用来建立类中的普通属性与表的字段的对应关系
- 属性:
- name :类中的属性名
- column :表中的字段名
- length :长度
- type :类型
- not-null :设置非空
- unique :设置唯一
- 标签用来建立类中的普通属性与表的字段的对应关系
Hibernate的核心配置
- 必须的配置
- 连接数据库的基本的参数
- 驱动类
- url路径
- 用户名
- 密码
- 方言
- 可选的配置
- 显示SQL :hibernate.show_sql
- 格式化SQL :hibernate.format_sql
- 自动建表 :hibernate.hbm2ddl.auto
- none :不使用hibernate的自动建表
- reate :如果数据库中已经有表,删除原有表,重新创建,如果没有表,新建表。(测试)
- create-drop :如果数据库中已经有表,删除原有表,执行操作,删除这个表。如果没有表,新建一个,使用完了删除该表。(测试)
- update :如果数据库中有表,使用原有表,如果没有表,创建新表(更新表结构)
- validate :如果没有表,不会创建表。只会使用数据库中原有的表。(校验映射和表结构)。
- 映射文件的引入
- 引入映射文件的位置
- 连接数据库的基本的参数
<mapping resource=“com/lld/hibernate/demo01/Customer.hbm.xml”/>
Hibernate的核心API
Configuration:Hibernate的配置对象
- 作用:
-
加载核心配置文件
- hibernate.properties
Configuration cfg = new Configuration();
- hibernate.cfg.xml
Configuration cfg = new Configuration().configure();
-
加载映射文件
手动加载映射
configuration.addResource(“com/itheima/hibernate/demo1/Customer.hbm.xml”); -
SessionFactory:Session工厂
- SessionFactory内部维护了Hibernate的连接池和Hibernate的二级缓存(不讲)。是线程安全的对象。一个项目创建一个对象即可。
- 配置连接池:(了解)
<!-- 配置C3P0连接池 -->
<property name="connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
<!--在连接池中可用的数据库连接的最少数目 -->
<property name="c3p0.min_size">5</property>
<!--在连接池中所有数据库连接的最大数目 -->
<property name="c3p0.max_size">20</property>
<!--设定数据库连接的过期时间,以秒为单位,
如果连接池中的某个数据库连接处于空闲状态的时间超过了timeout时间,就会从连接池中清除 -->
<property name="c3p0.timeout">120</property>
<!--每3000秒检查所有连接池中的空闲连接 以秒为单位-->
<property name="c3p0.idle_test_period">3000</property>
- 抽取工具类【一个项目只创建一个SessionFactory】
package com.lld.hibernate.Utils;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class HibernateUtils {
private static final Configuration conf;
private static final SessionFactory sf;
static{
conf = new Configuration().configure();
sf = conf.buildSessionFactory();
}
public static Session openSession(){
return sf.openSession();
}
}
- 测试类
package com.lld.hibernate.Utils;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class HibernateUtils {
private static final Configuration conf;
private static final SessionFactory sf;
static{
conf = new Configuration().configure();
sf = conf.buildSessionFactory();
}
public static Session openSession(){
return sf.openSession();
}
}
Session:类似Connection对象是连接对象
Session代表的是Hibernate与数据库的链接对象。不是线程安全的。与数据库交互桥梁
- Session中的API
- 保存方法:
- Serializable save(Object obj);
- 查询方法:
- T get(Class c,Serializable id);
- T load(Class c,Serializable id);
- get方法和load方法的区别?
- 保存方法:
@Test
// 查询:
// ***** get方法和load方法的区别
public void demo2(){
Session session = HibernateUtils.openSession();
Transaction tx = session.beginTransaction();
/**
* get方法
* * 采用的是立即加载,执行到这行代码的时候,就会马上发送SQL语句去查询。
* * 查询后返回是真实对象本身。
* * 查询一个找不到的对象的时候,返回null
*
* load方法
* * 采用的是延迟加载(lazy懒加载),执行到这行代码的时候,不会发送SQL语句,当真正使用这个对象的时候才会发送SQL语句。
* * 查询后返回的是代理对象。javassist-3.18.1-GA.jar 利用javassist技术产生的代理。
* * 查询一个找不到的对象的时候,返回ObjectNotFoundException
*/
// 使用get方法查询
/*Customer customer = session.get(Customer.class, 100l); // 发送SQL语句
System.out.println(customer);*/
// 使用load方法查询
Customer customer = session.load(Customer.class, 200l);
System.out.println(customer);
tx.commit();
session.close();
}
* 修改方法
* void update(Object obj);
@Test
public void demo2(){
Session session = HibernateUtils.openSession();
//开启事务
Transaction transaction = session.beginTransaction();
/*
* 修改操作
*/
//1.先查询再修改【推荐】
//不会将之前的数据覆盖
/*Customer customer = session.get(Customer.class, 3l);
customer.setCust_source("下水道");
session.update(customer);*/
//2.直接创建对象进行修改
//会将之前的数据覆盖,将现有的数据插入
Customer customer = new Customer();
customer.setCust_id(1l);
customer.setCust_source("狗窝");
session.update(customer);
//提交事务
transaction.commit();
//关闭连接
session.close();
}
上一篇: 最快的模式,自媒体一个月就可以崛起
下一篇: 【Oracle】知识点小结