1. 什么是hibernate
ORM框架/持久层框架
object reference mapping
通过管理对象来改变数据库中的数据
通过管理对象来操作数据库
mybatis
new person()
dao dao
jdbc hibernate
jdbc
优势:跨数据库的无缝移植
2. 如何在项目中添加hibernate支持(手动添加)
2.1 添加hibernate相关依赖
2.2 在resource目录下添加hibernate.cfg.xml(核心配置文件)
2.2.1 添加DTD支持
2.2.2 添加Hibernate的配置
2.2.2.1 数据库相关(connection.username|connection.password|connection.url|connection.driver_class|dialect)
2.2.2.2 调试相关(show_sql|format_sql)
(核心配置文件具体代码块)
<?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>
<!-- 需要配置以下内容: -->
<!-- 配置数据源信息 -->
<!-- 配置SQL语句生成的规则,简单的说就是数据库的sql语法规则,不同的数据库sql语句不一样 -->
<!-- 配置本地事务 -->
<!-- 配置开发调试所用的配置show_sql,format_sql,就是console控制台输出具体生成的SQL语句 -->
<!-- 配置映射文件 -->
<!-- 1. 数据库相关 -->
<property name="connection.username">root</property>
<property name="connection.password">123</property>
<property name="connection.url">jdbc:mysql://localhost:3306/hibernate?useUnicode=true&characterEncoding=UTF-8</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- 配置本地事务(No CurrentSessionContext configured!) -->
<property name="hibernate.current_session_context_class">thread</property>
<!-- 2. 调试相关 -->
<property name="show_sql">true</property>
<property name="format_sql">true</property>
<!-- 3. 添加实体映射文件 -->
<mapping resource="com/zking/one/Entityxml/UserEntity.hbm.xml"/>
</session-factory>
</hibernate-configuration>
2.3 在开发阶段再创建实体类和实体映射文件(*.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>
<!-- name:类得权限定名,table:指得是类所对应得数据库表 -->
<class name="com.zking.one.entity.User" table="t_hibernate_user">
<!-- name:指得类属性 ,type:指得类属性类型,column:数据库表字段 -->
<id name="id" type="java.lang.Integer" column="id">
<!-- 配置数据库表主键生成策略 -->
<generator class="increment"></generator>
</id>
<!-- User对应得表字段 -->
<property name="user_name" type="java.lang.String" column="user_name"></property>
<property name="user_pwd" type="java.lang.String" column="user_pwd"></property>
<property name="real_name" type="java.lang.String" column="real_name"></property>
<property name="sex" type="java.lang.String" column="sex"></property>
<property name="birthday" type="java.sql.Date" column="birthday"></property>
<property name="create_datetime" type="java.sql.Timestamp" column="create_datetime" insert="false" update="false"></property>
<property name="remark" type="java.lang.String" column="remark"></property>
</class>
</hibernate-mapping>
实体映射文件一定要加到核心配置文件