1.hibernate概述
Hibernate是一個(gè)開放源代碼的對象關(guān)系映射框架卸耘,它對JDBC進(jìn)行了非常輕量級的對象封裝退敦,它將POJO與數(shù)據(jù)庫表建立映射關(guān)系,是一個(gè)全自動的orm框架蚣抗,hibernate可以自動生成SQL語句侈百,自動執(zhí)行,使得Java程序員可以隨心所欲的使用對象編程思維來操縱數(shù)據(jù)庫翰铡。 Hibernate可以應(yīng)用在任何使用JDBC的場合钝域,既可以在Java的客戶端程序使用,也可以在Servlet/JSP的Web應(yīng)用中使用锭魔,最具革命意義的是例证,Hibernate可以在應(yīng)用EJB的J2EE架構(gòu)中取代CMP,完成數(shù)據(jù)持久化的重任迷捧。 —— 百度百科
2.hibernater入門
-
環(huán)境搭建
第一步:導(dǎo)入包
<!--hibernate-jar-->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.2.11.Final</version>
</dependency>
<!--mysql-jar-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.6</version>
</dependency>
<!--日志文件-->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
第二步:創(chuàng)建entity
package com.study.entity;
public class User {
private int uid;
private String username;
private String password;
private String address;
public int getUid() {
return uid;
}
public void setUid(int uid) {
this.uid = uid;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
}
第三步:配置實(shí)體類和數(shù)據(jù)表的一一對應(yīng)關(guān)系(映射關(guān)系)
1.創(chuàng)建xml配置文件: User.hbm.xml
2.引入約束文件:
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
3.配置類和表對應(yīng)
- class標(biāo)簽
- name屬性:實(shí)體類全路徑
- table屬性:數(shù)據(jù)庫表名稱
- id標(biāo)簽
- name屬性:實(shí)體類里面的id屬性名稱
- column:生成的表字段
<?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.study.entity.User" table="h_user">
<id name="uid" column="uid">
<generator class="native"></generator>
</id>
<property name="username" column="username"></property>
<property name="password" column="password"></property>
<property name="address" column="address"></property>
</class>
</hibernate-mapping>
第四步:創(chuàng)建hibernate核心配置文件
- 創(chuàng)建文件:hibernate.cfg.xml
- 引入dtd約束
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
- 配置數(shù)據(jù)庫信息
<!-- - 配置數(shù)據(jù)庫信息-->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernate?characterEncoding=utf8</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">root</property>
- 配置hibernate信息
<!-- - 配置hibernate信息(可選)-->
<!--輸出底層sql-->
<property name="hibernate.show_sql">true</property>
<!--輸出底層sql語句格式-->
<property name="hibernate.format_sql">true</property>
<!--hibernate 幫創(chuàng)建表织咧,需要配置胀葱。update:如果有表進(jìn)行更新,沒有的話進(jìn)行創(chuàng)建-->
<property name="hibernate.hbm2ddl.auto">update</property>
<!--配置數(shù)據(jù)庫方言 在mysql里面實(shí)現(xiàn)分頁笙蒙,關(guān)鍵字limit 只能使用mysql里面 抵屿,在oracle數(shù)據(jù)庫,實(shí)現(xiàn)分頁rownum-->
<property name="hibernate.dialect">org.hibernate.dialect.MySQL55Dialect</property>
- 將映射文件加載到核心文件中
<!-- - 將映射文件加載到核心文件中(必須)-->
<mapping resource="mapping/User.hbm.xml"></mapping>
- 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>
<!-- - 配置數(shù)據(jù)庫信息-->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernate?characterEncoding=utf8</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">root</property>
<!-- - 配置hibernate信息(可選)-->
<!--輸出底層sql-->
<property name="hibernate.show_sql">true</property>
<!--輸出底層sql語句格式-->
<property name="hibernate.format_sql">true</property>
<!--hibernate 幫創(chuàng)建表捅位,需要配置轧葛。update:如果有表進(jìn)行更新,沒有的話進(jìn)行創(chuàng)建-->
<property name="hibernate.hbm2ddl.auto">update</property>
<!--配置數(shù)據(jù)庫方言 在mysql里面實(shí)現(xiàn)分頁艇搀,關(guān)鍵字limit 只能使用mysql里面 尿扯,在oracle數(shù)據(jù)庫,實(shí)現(xiàn)分頁rownum-->
<property name="hibernate.dialect">org.hibernate.dialect.MySQL55Dialect</property>
<!-- - 將映射文件加載到核心文件中(必須)-->
<mapping resource="mapping/User.hbm.xml"></mapping>
</session-factory>
</hibernate-configuration>
第五步:實(shí)現(xiàn)添加操作
- 加載hibernate核心配置文件
- 創(chuàng)建SessionFactory對象
- 使用SessionFactory創(chuàng)建session對象
- 開啟事務(wù)
- 寫具體邏輯crud代碼操作‘
- 提交事務(wù)
- 關(guān)閉資源
package com.study.text;
import com.study.entity.User;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.junit.Test;
/**
*
* @author 馬歡歡
* @date 2017/12/5
*/
public class HibernateTest {
@Test
public void testAdd(){
// 加載hibernate核心配置文件
Configuration configuration = new Configuration();
configuration.configure("/hibernate.cfg.xml");
// 創(chuàng)建SessionFactory對象
SessionFactory sessionFactory = configuration.buildSessionFactory();
// 使用SessionFactory創(chuàng)建session對象
Session session = sessionFactory.openSession();
// 開啟事務(wù)
Transaction tx = session.beginTransaction();
// 寫具體邏輯crud代碼操作
User user = new User();
user.setUsername("小明");
user.setPassword("456789");
user.setAddress("西安");
session.save(user);
// 提交事務(wù)
tx.commit();
// 關(guān)閉資源
session.close();
sessionFactory.close();
}
}
注意:我在使用上面文件創(chuàng)建表的時(shí)候遇到一個(gè)問題焰雕,就是在創(chuàng)建的時(shí)候會報(bào)錯(cuò)
這個(gè)問題我在網(wǎng)上查了衷笋,發(fā)現(xiàn)是因?yàn)椋篶reate 語句后面的TYPE=MyISAM TYPE=MyISAM 和 ENGINE=MyISAM 都是設(shè)置數(shù)據(jù)庫存儲引擎的語句 ,(老版本的MySQL使用TYPE而不是ENGINE(例如淀散,TYPE = MYISAM)右莱。 MySQL 5.1為向下兼容而支持這個(gè)語法,但TYPE現(xiàn)在被輕視档插,而ENGINE是首先的用法慢蜓。
因此需要將配置文件中的mysql方言改為5.5的:
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
改為
<property name="hibernate.dialect">org.hibernate.dialect.MySQL55Dialect</property>
完
當(dāng)前文集 :Hibernate框架學(xué)習(xí)