11/08/2018, 19:08

Sử dụng Hibernate Tools tạo các file mapping và annotation

Hibernate là gì? Bài này chúng tôi hướng dẫn bạn làm thế nào để sử dụng Hibernate Tools tạo các file mapping (hbm) và annotation từ các table trong database một cách tự động. Lưu ý: trước khi tiếp tục bạn cần phải cài đặt Hibernate Tools theo như hướng dẫn trong bài Cài đặt ...

Hibernate là gì?

Bài này chúng tôi hướng dẫn bạn làm thế nào để sử dụng Hibernate Tools tạo các file mapping (hbm) và annotation từ các table trong database một cách tự động.

Lưu ý: trước khi tiếp tục bạn cần phải cài đặt Hibernate Tools theo như hướng dẫn trong bài Cài đặt Hibernate/Jboss Tools trong Eclipse IDE

Các Tool được sử dụng trong bài này:

  • Eclipse kepler 2
  • MySQL 5.0
  • JDK 1.8

1. Hiển thị Hibernate Perspective

Trong Eclipse, tại menu bar, chọn “Windows” –> “Open Perspective” –> “Others”.

Tại đây, thực hiện double click vào “Hibernate” hoặc click [OK] để hiển thị Hibernate Perspective ra giao diện chính của Eclipse.

Sử dụng Hibernate Tools tạo các file mapping và annotation

2. Tạo Hibernate Project

Tạo project bằng maven có cấu trúc như sau:

Sử dụng Hibernate Tools tạo các file mapping và annotation

File pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
    http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>hibernate-auto-mapping</groupId>
  <artifactId>hibernate-auto-mapping</artifactId>
  <version>0.0.1-SNAPSHOT</version>
   
  <dependencies>
    <dependency>
      <groupId>org.hibernate</groupId>
      <artifactId>hibernate-core</artifactId>
      <version>3.6.3.Final</version>
    </dependency>
    <dependency>
      <groupId>javassist</groupId>
      <artifactId>javassist</artifactId>
      <version>3.12.1.GA</version>
    </dependency>
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>5.1.6</version>
    </dependency>
  </dependencies>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.3</version>
        <configuration>
          <source />
          <target />
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

Định nghĩa file hibernate.cfg.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration SYSTEM 
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
   <session-factory>
   <property name="hibernate.dialect">
      org.hibernate.dialect.MySQLDialect
   </property>
   <property name="hibernate.connection.driver_class">
      com.mysql.jdbc.Driver
   </property>
    
   <property name="hibernate.connection.url">
      jdbc:mysql://localhost/testdb
   </property>
   <property name="hibernate.connection.username">
      root
   </property>
   <property name="hibernate.connection.password">
      1234567890
   </property>
    
   <mapping resource="Employee.hbm.xml"/>
</session-factory>
</hibernate-configuration>

3. Tạo Hibernate Configuration

Trong Hibernate Perspective, right click và chọn “Add Configuration…”

Sử dụng Hibernate Tools tạo các file mapping và annotation

Tại “Edit Configuration” dialog

  1. Tại hạng mục “Project”, click button “Browser…” để chọn project
  2. Tại hạng mục “Database Connection”, click button “New” để thiết lập kết nối đến database của bạn. Lưu ý: trong hướng dẫn này chúng tôi đã tạo ra một database connection có tên là “MySQLConnector”, bạn cũng có thể tạo ra các database connection cho riêng mình.
  3. Tại hạng mục “Configuration File”, click button “Setup” để tạo mới hoặc sử dụng file cấu hình hibernate “hibernate.cfg.xml” đã tồn tại trong project

    Sử dụng Hibernate Tools tạo các file mapping và annotation

Xem danh sách các bảng trong database của bạn tại “Hibernate Perspective”

Sử dụng Hibernate Tools tạo các file mapping và annotation

4. Tạo Hibernate Code một cách tự động

Đến bước này là bạn đã có thể tạo ra các file mapping (hbm) và annotation, bạn cũng có thể tạo ra file cấu hình hibernate “hibernate.cfg.xml” nếu như nó chưa tồn tại.

Click vào biểu tượng “Hibernate code generation”, sau đó click “Hibernate Code Generation Configuration”.

Sử dụng Hibernate Tools tạo các file mapping và annotation

Tạo new configuration:

Nhập hạng mục Name, sau đó chọn tab “Main”, rồi nhập hạng mục “Output directory” – nơi lưu các file được tạo ra, và check vào tùy chọn “Reverse engineer from JDBC Connection”.

Sử dụng Hibernate Tools tạo các file mapping và annotation

Tại tab “Exporter”, chọn những gì bạn muốn Hibernate Tools tạo ra cho bạn chẳng hạn như Entity, mapping file (.hbm.xml) , DAO, annotation code, …

Cuối cùng, click button “Run”

Sử dụng Hibernate Tools tạo các file mapping và annotation

Kết quả:

Sử dụng Hibernate Tools tạo các file mapping và annotation

Chúc các bạn thành công!

Bài tiếp theo: Ví dụ mối quan hệ many-to-many trong Hibernate
Hibernate là gì?
0