Hibernate的基礎
1.Hibernate的基本使用方式
1.Hibernate是一個物件關係對映框架
2.Hibernate的命名規範(儘量使用 類名.hbm.xml的命名規範)
3.建立實體類與表的對映
Customer.java
package com.wuhaitao.hibernate.demo1;
/**
* 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;
* @author wuhaitao
*
*/
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;
}
}
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.wuhaitao.hibernate.demo1.Customer" table="cst_customer">
<!-- id屬性是建立於表的主鍵對映 -->
<id name="cust_id" column="cust_id">
<generator class="native"></generator>
</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>
4.建立核心配置檔案hibernate.cfg.xml
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.dialect">org.hibernate.dialect.MySQL5Dialect</property>
<!--為了方便除錯是否在執行hibernate時在日誌中輸出sql語句 -->
<!-- 資料庫驅動 -->
<property name="hibernate.connection.driver_class">com.mysql.cj.jdbc.Driver</property>
<!-- 資料庫連線url ,由於用的Mysql8 必須配置時區和SSl,並且驅動也改了-->
<property name="hibernate.connection.url">jdbc:mysql:///hibernate_day01?useSSL=false&serverTimezone=UTC</property>
<!-- 資料庫使用者名稱和密碼 -->
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">123456</property>
<!-- Hibernate 方言 -->
<property name="hibernate.show_sql">true</property>
<!-- 是否對日誌中輸出的sql語句進行格式化 -->
<property name="hibernate.format_sql">true</property>
<!-- 引入對映檔案 -->
<mapping resource="com/wuhaitao/hibernate/demo1/customer.hbm.xml"/>
</session-factory>
</hibernate-configuration>
5.在核心配置檔案中引入對映檔案
- 案例測試
HibernateDemo1.java
package com.wuhaitao.hibernate.demo1;
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 test() {
//1.載入核心配置檔案
Configuration configuration = new Configuration().configure();
//2.建立SessionFactory物件
SessionFactory sessionFactory = configuration.buildSessionFactory();
//3.得到session物件
Session session = sessionFactory.openSession();
//4.手動開啟事務
Transaction beginTransaction = session.beginTransaction();
//5.編寫程式碼
Customer customer = new Customer();
customer.setCust_name("馬雲");
session.save(customer);
//6.提交事務
beginTransaction.commit();
//7.釋放資源
session.close();
}
}
結果
相關文章
- Hibernate 泛型實現 dao 層的基類泛型
- [今日白學]元件的基礎的基礎的基礎元件
- python基礎中的基礎Python
- Hibernate SQL方言 (hibernate.dialect)SQL
- Hibernate
- Hibernate-ORM:13.Hibernate中的連線查詢ORM
- Hibernate之SchemaExport的使用Export
- hibernate使用
- Hibernate框架框架
- [譯]基礎中的基礎,JavaScript中的值和引用JavaScript
- 【FPGA基礎】Latch基礎FPGA
- Hibernate基於Maven入門例項,與MyBatis比對MavenMyBatis
- mybatis與hibernate的區別MyBatis
- Hibernate的入門知識
- Hibernate中的cascade與inverse
- hibernate中的no session問題Session
- 現代通訊技術基礎中的基礎
- 060、Vue3+TypeScript基礎,插槽的基礎用法VueTypeScript
- Pandas 基礎 (2) - Dataframe 基礎
- 前端基礎之jQuery基礎前端jQuery
- Java基礎-語法基礎Java
- 手寫 Hibernate ORM 框架 00-hibernate 簡介ORM框架
- Mybatis的基礎配置MyBatis
- 運算子的基礎
- Redis的基礎命令Redis
- mybatis的基礎搭建MyBatis
- RAID的基礎命令AI
- golang的基礎概念Golang
- hibernate詳解
- Spring 整合 HibernateSpring
- Hibernate配置OracleOracle
- Hibernate填坑
- Hibernate 查詢
- 前端之路---入坑篇之基礎中的基礎html前端HTML
- 『現學現忘』Git基礎 — 13、Git的基礎操作Git
- 《java程式設計基礎》java的基礎知識(三)Java程式設計
- Java基礎-物件導向基礎Java物件
- Python基礎篇-Python基礎01Python