Hibernate学习笔记 --- 使用注解定义ORM配置

Posted smart_妖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hibernate学习笔记 --- 使用注解定义ORM配置相关的知识,希望对你有一定的参考价值。

    ORM配置的定义,除了用XML文件之外,还可以使用注解的方式。使用XML的优点是如果配置有变更,在仅更改配置的情况下,不需要重新编译(作为数据库表的映射类,除了表字段类型变更之外,不修改数据类的场景应该非常少了),缺点是同时存在数据类和配置文件,如果有变更可能需要同时改两个地方,容易遗漏。而使用注解的方式,可以将XML的配置文件去掉,一定程度上减少维护成本

    相对于使用XML定义ORM配置,有两处变更:

  1.在数据类的属性上通过添加注解的方式完成ORM配置,关于Hibernate注解的详细说明参见这里

  2.在Hibernate的配置文件hibernate.cfg.xml中修改ORM配置的引入;

首先,重新编写数据类Movie并删除之前配置好的Movie.hbm.xml:

package study.hibernate.model;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

import org.hibernate.annotations.Type;

/**
 * 电影数据类
 *
 */
@Entity
@Table(name="MOVIE")
public class Movie {
    @Id
    @Column(name="MOVIE_ID")
    private int id;

    @Column(name="NAME")
    @Type(type="string")
    private String name;

    @Column(name="DESCRIPTION")
    @Type(type="text")
    private String description;

    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 String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }
    
}

  接着更改Hibernate配置文件 ,将原来的<mapping resource=“xxx" />更改为<mapping class="xxx" />

<?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>
        <!-- 数据库JDBC配置 -->
        <property name="connection.driver_class">com.mysql.cj.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://localhost:3306/MOVIE_DB?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8</property>
        <property name="connection.username">root</property>
        <property name="connection.password">root</property>

        <!-- JDBC数据库连接池大小 -->
        <property name="connection.pool_size">10</property>

        <!-- SQL dialect -->
        <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>

        <!-- Disable the second-level cache  -->
        <property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property>

        <!-- Echo all executed SQL to stdout -->
        <property name="show_sql">true</property>

        <!-- 每次启动的时候,会把表先删除重新创建 -->
        <property name="hbm2ddl.auto">create</property>

        <!-- 添加了Hibernate注解的数据类全路径名称,Hibernate会在整个classpath下查找该文件 -->
        <mapping class="study.hibernate.model.Movie"/>

    </session-factory>

</hibernate-configuration>

  最后,重新运行程序,可以得到和之前通过XML配置方式一样的结果

 

以上是关于Hibernate学习笔记 --- 使用注解定义ORM配置的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记Hibernate 注解 (Y2-1-9)

Hibernate学习笔记 --- 映射基本数据类型的List集合

Spring框架学习笔记

hibernate笔记--使用注解(annotation)方式配置单(双)向多对一的映射关系

Hibernate学习 —— 抓取策略(注解方式)

学习笔记Spring中自定义注解