Hibernate-例
ここで、Hibernateを使用してスタンドアロンアプリケーションでJava永続性を提供する方法を理解するための例を見てみましょう。Hibernateテクノロジーを使用してJavaアプリケーションを作成するためのさまざまな手順を実行します。
POJOクラスを作成する
アプリケーション作成の最初のステップは、データベースに永続化されるアプリケーションに応じて、JavaPOJOクラスを構築することです。私たちのことを考えてみましょうEmployee とのクラス getXXX そして setXXX JavaBeans準拠のクラスにするためのメソッド。
POJO(Plain Old Java Object)は、EJBフレームワークにそれぞれ必要ないくつかの特殊なクラスとインターフェースを拡張または実装しないJavaオブジェクトです。通常のJavaオブジェクトはすべてPOJOです。
Hibernateによって永続化されるクラスを設計するときは、JavaBeans準拠のコードと、次のようなインデックスとして機能する1つの属性を提供することが重要です。 id Employeeクラスの属性。
public class Employee {
private int id;
private String firstName;
private String lastName;
private int salary;
public Employee() {}
public Employee(String fname, String lname, int salary) {
this.firstName = fname;
this.lastName = lname;
this.salary = salary;
}
public int getId() {
return id;
}
public void setId( int id ) {
this.id = id;
}
public String getFirstName() {
return firstName;
}
public void setFirstName( String first_name ) {
this.firstName = first_name;
}
public String getLastName() {
return lastName;
}
public void setLastName( String last_name ) {
this.lastName = last_name;
}
public int getSalary() {
return salary;
}
public void setSalary( int salary ) {
this.salary = salary;
}
}
データベーステーブルの作成
2番目のステップは、データベースにテーブルを作成することです。各オブジェクトに対応する1つのテーブルがあり、永続性を提供する用意があります。上記のオブジェクトを次のRDBMSテーブルに格納および取得する必要があることを考慮してください-
create table EMPLOYEE (
id INT NOT NULL auto_increment,
first_name VARCHAR(20) default NULL,
last_name VARCHAR(20) default NULL,
salary INT default NULL,
PRIMARY KEY (id)
);
マッピング構成ファイルの作成
このステップは、定義された1つまたは複数のクラスをデータベーステーブルにマップする方法をHibernateに指示するマッピングファイルを作成することです。
<?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>
<class name = "Employee" table = "EMPLOYEE">
<meta attribute = "class-description">
This class contains the employee detail.
</meta>
<id name = "id" type = "int" column = "id">
<generator class="native"/>
</id>
<property name = "firstName" column = "first_name" type = "string"/>
<property name = "lastName" column = "last_name" type = "string"/>
<property name = "salary" column = "salary" type = "int"/>
</class>
</hibernate-mapping>
マッピングドキュメントは、<classname> .hbm.xml形式のファイルに保存する必要があります。マッピングドキュメントをファイルEmployee.hbm.xmlに保存しました。マッピングドキュメントの詳細を少し見てみましょう-
マッピングドキュメントは、すべての<class>要素を含むルート要素として<hibernate-mapping>を持つXMLドキュメントです。
ザ・ <class>要素は、Javaクラスからデータベーステーブルへの特定のマッピングを定義するために使用されます。Javaクラス名は、name クラス要素の属性とデータベーステーブル名は、 table 属性。
ザ・ <meta> elementはオプションの要素であり、クラスの説明を作成するために使用できます。
ザ・ <id>elementは、クラス内の一意のID属性をデータベーステーブルの主キーにマップします。ザ・name id要素の属性は、クラス内のプロパティを参照し、 column属性は、データベーステーブルの列を参照します。ザ・type 属性はHibernateマッピングタイプを保持します。このマッピングタイプはJavaからSQLデータタイプに変換されます。
ザ・ <generator>id要素内の要素は、主キー値を自動的に生成するために使用されます。ザ・class ジェネレータ要素の属性はに設定されます native 休止状態にどちらかをピックアップさせる identity, sequence または hilo 基盤となるデータベースの機能に応じて主キーを作成するアルゴリズム。
ザ・ <property>elementは、Javaクラスプロパティをデータベーステーブルの列にマップするために使用されます。ザ・name 要素の属性は、クラス内のプロパティを参照し、 column属性は、データベーステーブルの列を参照します。ザ・type 属性はHibernateマッピングタイプを保持します。このマッピングタイプはJavaからSQLデータタイプに変換されます。
マッピングドキュメントで使用される他の属性と要素が利用可能であり、他のHibernate関連のトピックについて説明しながら、できるだけ多くのことをカバーしようと思います。
アプリケーションクラスを作成する
最後に、main()メソッドを使用してアプリケーションクラスを作成し、アプリケーションを実行します。このアプリケーションを使用して、いくつかの従業員のレコードを保存してから、それらのレコードにCRUD操作を適用します。
import java.util.List;
import java.util.Date;
import java.util.Iterator;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class ManageEmployee {
private static SessionFactory factory;
public static void main(String[] args) {
try {
factory = new Configuration().configure().buildSessionFactory();
} catch (Throwable ex) {
System.err.println("Failed to create sessionFactory object." + ex);
throw new ExceptionInInitializerError(ex);
}
ManageEmployee ME = new ManageEmployee();
/* Add few employee records in database */
Integer empID1 = ME.addEmployee("Zara", "Ali", 1000);
Integer empID2 = ME.addEmployee("Daisy", "Das", 5000);
Integer empID3 = ME.addEmployee("John", "Paul", 10000);
/* List down all the employees */
ME.listEmployees();
/* Update employee's records */
ME.updateEmployee(empID1, 5000);
/* Delete an employee from the database */
ME.deleteEmployee(empID2);
/* List down new list of the employees */
ME.listEmployees();
}
/* Method to CREATE an employee in the database */
public Integer addEmployee(String fname, String lname, int salary){
Session session = factory.openSession();
Transaction tx = null;
Integer employeeID = null;
try {
tx = session.beginTransaction();
Employee employee = new Employee(fname, lname, salary);
employeeID = (Integer) session.save(employee);
tx.commit();
} catch (HibernateException e) {
if (tx!=null) tx.rollback();
e.printStackTrace();
} finally {
session.close();
}
return employeeID;
}
/* Method to READ all the employees */
public void listEmployees( ){
Session session = factory.openSession();
Transaction tx = null;
try {
tx = session.beginTransaction();
List employees = session.createQuery("FROM Employee").list();
for (Iterator iterator = employees.iterator(); iterator.hasNext();){
Employee employee = (Employee) iterator.next();
System.out.print("First Name: " + employee.getFirstName());
System.out.print(" Last Name: " + employee.getLastName());
System.out.println(" Salary: " + employee.getSalary());
}
tx.commit();
} catch (HibernateException e) {
if (tx!=null) tx.rollback();
e.printStackTrace();
} finally {
session.close();
}
}
/* Method to UPDATE salary for an employee */
public void updateEmployee(Integer EmployeeID, int salary ){
Session session = factory.openSession();
Transaction tx = null;
try {
tx = session.beginTransaction();
Employee employee = (Employee)session.get(Employee.class, EmployeeID);
employee.setSalary( salary );
session.update(employee);
tx.commit();
} catch (HibernateException e) {
if (tx!=null) tx.rollback();
e.printStackTrace();
} finally {
session.close();
}
}
/* Method to DELETE an employee from the records */
public void deleteEmployee(Integer EmployeeID){
Session session = factory.openSession();
Transaction tx = null;
try {
tx = session.beginTransaction();
Employee employee = (Employee)session.get(Employee.class, EmployeeID);
session.delete(employee);
tx.commit();
} catch (HibernateException e) {
if (tx!=null) tx.rollback();
e.printStackTrace();
} finally {
session.close();
}
}
}
コンパイルと実行
上記のアプリケーションをコンパイルして実行する手順は次のとおりです。コンパイルと実行に進む前に、PATHとCLASSPATHが適切に設定されていることを確認してください。
構成の章で説明されているように、hibernate.cfg.xml構成ファイルを作成します。
上記のように、Employee.hbm.xmlマッピングファイルを作成します。
上記のようにEmployee.javaソースファイルを作成し、コンパイルします。
上記のようにManageEmployee.javaソースファイルを作成し、コンパイルします。
ManageEmployeeバイナリを実行してプログラムを実行します。
次の結果が得られ、EMPLOYEEテーブルにレコードが作成されます。
$java ManageEmployee
.......VARIOUS LOG MESSAGES WILL DISPLAY HERE........
First Name: Zara Last Name: Ali Salary: 1000
First Name: Daisy Last Name: Das Salary: 5000
First Name: John Last Name: Paul Salary: 10000
First Name: Zara Last Name: Ali Salary: 5000
First Name: John Last Name: Paul Salary: 10000
EMPLOYEEテーブルを確認すると、次のレコードが含まれているはずです-
mysql> select * from EMPLOYEE;
+----+------------+-----------+--------+
| id | first_name | last_name | salary |
+----+------------+-----------+--------+
| 29 | Zara | Ali | 5000 |
| 31 | John | Paul | 10000 |
+----+------------+-----------+--------+
2 rows in set (0.00 sec
mysql>