0%

hibernate开发步骤

hibernate开发步骤

  • 创建hibernate配置文件
  • 创建实体类
  • 创建对象-关系映射文件
  • 通过hibernate访问数据库

下面提供一个简单地示例

hibernate配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- 配置连接数据库信息 -->
<property name="connection.url">jdbc:mysql://localhost:3306/studyhibernate</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.username">root</property>
<property name="connection.password">123456</property>

<!-- 配置hibernate的基本信息 -->
<!-- hibernate方言 -->
<property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
<!-- 执行操作时是否在控制台打印 -->
<property name="show_sql">true</property>
<!-- 是否对SQL进行格式化 -->
<property name="format_sql">true</property>
<!-- 指定自动生成数据表的策略 -->
<property name="hibernate.hbm2ddl.auto">update</property>

<!-- 指定关联的映射文件 -->
<mapping resource="User.hbm.xml"/>
</session-factory>
</hibernate-configuration>

实体类

  • 提供一个无参构造器:hibernate使用Constructor.newInstance()来实例化
  • 提供一个主键字段
  • 实体类的字段要声明get/set方法:hibernate通过get/set方法来获取字段
  • 使用非final的类:如果没有实现接口的话,hibernate会使用cglib来生成代理,final类不可以生成cglib代理
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.zhanghe.study.model;

/**
* @author zh
* @date 2020/12/4 10:26
*/
public class User {

private int id;

private String name;

private int age;

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public int getAge() {
return age;
}

public void setAge(int age) {
this.age = age;
}
}

hibernate映射文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<!-- name为实体类 table为表名 -->
<class name="com.zhanghe.study.model.User" table="user">
<!-- name为字段名 type为类型 column为表的字段名 -->
<id name="id" type="java.lang.Integer">
<column name="id"/>
<!-- 指定主键生成方式 navive 使用数据库本地方式 -->
<generator class="native"/>
</id>
<property name="name" type="java.lang.String">
<column name="name"/>
</property>
<property name="age" type="java.lang.Integer">
<column name="age"/>
</property>
</class>
</hibernate-mapping>

hibernate访问数据库

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.zhanghe.study;

import com.zhanghe.study.model.User;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;

/**
* @author zh
* @date 2020/12/4 10:00
*/
public class Main {
private static final SessionFactory sessionFactory;
// 创建sessionFactory对象
static {
try {
// 对应的hibernate基本配置信息和对象关系映射信息
Configuration configuration = new Configuration();
// 找到hibernate.cfg.xml配置文件,如果没有会报错 当然也可以调用configure(String resource)有参的方法,自己指定配置文件名称及位置
configuration.configure();
// 4.0之前不需要使用serviceRegistry 直接构建sessionFactory configuration.buildSessionFactory()
// 4.0之后创建serviceRegistry,所有的配置和服务都要在该对象中注册才可以生效
// 4.3之前使用该方式new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry();
ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder().applySettings(configuration.getProperties()).build();
sessionFactory = configuration.buildSessionFactory(serviceRegistry);
} catch (Throwable ex) {
throw new ExceptionInInitializerError(ex);
}
}

// 创建session对象
public static Session getSession() throws HibernateException {
return sessionFactory.openSession();
}

public static void main(final String[] args) throws Exception {
final Session session = getSession();
// 开启事务
Transaction transaction = session.beginTransaction();
try {
User user = new User();
user.setAge(20);
user.setName("张三");
session.save(user);
transaction.commit();
} catch (Exception e){
transaction.rollback();
e.printStackTrace();
} finally {
session.close();
}
}
}

欢迎关注我的其它发布渠道