【Hibernate】——实体类映射到数据库表

时间:2022-08-29 14:53:29

    上回说到, Hibernate是一个开放源代码的对象关系映射框架,其核心应该也就是映射了,所以,今天我们了解一下Hibernate是如何将实体和数据库映射的。--即Hibernate根据实体自动建立表和字段。

    为了让大家更明了,小编写了一个小demo。实现了将实体映射到数据库表。希望通过这个小程序,让大家有所收获。

    先宏观看一下目录结构:

【Hibernate】——实体类映射到数据库表

    首先是Hibernate的核心配置文件:hibernate.cfg.xml

<!DOCTYPE hibernate-configuration PUBLIC
	"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
	"http://hibernate.sourceforge.net/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://localhost:3306/hibernate_first</property>
		<property name="hibernate.connection.username">root</property>
		<property name="hibernate.connection.password">root</property>
		<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
	</session-factory>
</hibernate-configuration>
    这是一个连接MySQL的示例,若想换数据库,直接更改 此配置文件即可,代码无需改动,这也是Hibernate的优点之一。
    然后,开始建立实体类,其包括5个属性:

package com.bjpowernode.hibernate;

import java.util.Date;

public class User {
	private String id;
	private String name;
	private String password;
	private Date createTime;
	private Date expireTime;
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	public Date getCreateTime() {
		return createTime;
	}
	public void setCreateTime(Date createTime) {
		this.createTime = createTime;
	}
	public Date getExpireTime() {
		return expireTime;
	}
	public void setExpireTime(Date expireTime) {
		this.expireTime = expireTime;
	}

}
    随后,建立 User.hbm.xml,完成实体类的映射。(其中的注释信息可以帮你更好的理解)

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC 
	"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
	"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
	<class name="com.bjpowernode.hibernate.User"> <!-- 实体类完整路径,会在关系模型中创建一张表,
叫User,也可以用table重命名,如 table="t_user" -->
		<id name="id"><!--标识主键,会在表里建主键id,也可以重命名 column="user_id"  -->
			<generator class="uuid"/><!--主键生成策略,generator为生成器,uuid为生成
不重复的32位字符串  -->
		</id>
		<property name="name"/><!--其它属性,对应字段  -->
		<property name="password"/>
		<property name="createTime"/>
		<property name="expireTime"/>
	</class>

</hibernate-mapping>
    最后,将User.hbm.xml添加到核心配置文件hibernate.cfg.xml中。

<!DOCTYPE hibernate-configuration PUBLIC
	"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
	"http://hibernate.sourceforge.net/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://localhost:3306/hibernate_first</property>
		<property name="hibernate.connection.username">root</property>
		<property name="hibernate.connection.password">root</property>
		<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
		
		<mapping resource="com/bjpowernode/hibernate/User.hbm.xml"/>
	</session-factory>
</hibernate-configuration>
      这样就完成了,通过这样的关联映射,Hibernate将会在数据库中建立相应的表和字段。

    为了更好的看到效果,小编建立了ExportDB.java,手动完成

package com.bjpowernode.hibernate;

import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;

/**
 * 将hbm生成ddl
 * @author han
 *
 */
public class ExportDB {
	public static void main(String[] args){
		//默认读取hibernate.cfg.xml文件
		Configuration cfg=new Configuration().configure();//读配置文件
		SchemaExport export=new SchemaExport(cfg);//通过此生成ddl
		export.create(true, true);//打印到控制台,输出脚本到数据库
	}
}
    原库:

【Hibernate】——实体类映射到数据库表

    执行后(插入表、字段):

【Hibernate】——实体类映射到数据库表【Hibernate】——实体类映射到数据库表

    建立Client.java,看插入数据效果

package com.bjpowernode.hibernate;

import java.util.Date;

import javax.lang.model.type.NullType;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class Client {

	public static void main(String[] args){
		//默认读取hibernate.cfg.xml文件
		Configuration cfg=new Configuration().configure();
		//建立SessionFactory,镜像
		SessionFactory factory=cfg.buildSessionFactory();
		
		//取得session
		Session session=null;
		try {
			session=factory.openSession();
			//开启事务
			session.beginTransaction();
			//创建对象,保存到数据库
			User user=new User();
			user.setName("张三");
			user.setPassword("123");
			user.setCreateTime(new Date());
			user.setExpireTime(new Date());
			
			//保存User对象
			session.save(user);
			//提交事务
			session.getTransaction().commit();
			
		} catch (Exception e) {
			e.printStackTrace();
			//回滚
			session.getTransaction().rollback();
			
		}finally{
			if(session!=null)
				if (session.isOpen()) {
					//关闭session
					session.close();
				}
		}
		
		
	}
}

【Hibernate】——实体类映射到数据库表


    通过这个例子,我们看到,Hibernate可以将实体类映射到数据库。从实体类到建表,设计字段到插入数据,我们没有写任何的SQL语句,因为Hibernate对底层做了很大程度的封装,省去了我们写SQL的这些过程。当然,这有利也有弊。弊就是由于封装的太严密,丧失了某些灵活性......