ไฮเบอร์เนต - ผู้สกัดกั้น
อย่างที่คุณได้เรียนรู้ว่าในโหมดไฮเบอร์เนตวัตถุจะถูกสร้างขึ้นและคงอยู่ต่อไป เมื่อเปลี่ยนวัตถุแล้วจะต้องบันทึกกลับไปที่ฐานข้อมูล กระบวนการนี้จะดำเนินต่อไปจนกว่าจะถึงเวลาที่ต้องการวัตถุครั้งต่อไปและจะโหลดจากที่เก็บถาวร
ดังนั้นวัตถุจึงผ่านขั้นตอนต่างๆในวงจรชีวิตและ Interceptor Interfaceมีวิธีการซึ่งสามารถเรียกได้ในขั้นตอนต่างๆเพื่อดำเนินการบางอย่างที่จำเป็น วิธีการเหล่านี้เป็นการเรียกกลับจากเซสชันไปยังแอ็พพลิเคชันซึ่งอนุญาตให้แอปพลิเคชันตรวจสอบและ / หรือจัดการคุณสมบัติของอ็อบเจ็กต์ถาวรก่อนที่จะถูกบันทึกอัพเดตลบหรือโหลด ต่อไปนี้เป็นรายการวิธีการทั้งหมดที่มีอยู่ในอินเทอร์เฟซ Interceptor -
ซีเนียร์ | วิธีการและคำอธิบาย |
---|---|
1 | findDirty() วิธีนี้เรียกว่าเมื่อไฟล์ flush() เรียกวิธีการบนวัตถุเซสชัน |
2 | instantiate() เมธอดนี้เรียกว่าเมื่อคลาสที่คงอยู่ถูกสร้างอินสแตนซ์ |
3 | isUnsaved() วิธีนี้เรียกว่าเมื่อวัตถุถูกส่งไปยังไฟล์ saveOrUpdate() วิธี/ |
4 | onDelete() วิธีนี้เรียกก่อนที่วัตถุจะถูกลบ |
5 | onFlushDirty() วิธีนี้เรียกว่าเมื่อ Hibernate ตรวจพบว่าวัตถุสกปรก (เช่นมีการเปลี่ยนแปลง) ระหว่างการดำเนินการอัพเดตแบบล้าง |
6 | onLoad() วิธีนี้เรียกว่าก่อนที่วัตถุจะเริ่มต้น |
7 | onSave() วิธีนี้เรียกก่อนที่จะบันทึกวัตถุ |
8 | postFlush() เมธอดนี้เรียกว่าหลังจากเกิดฟลัชและอ็อบเจ็กต์ได้รับการอัพเดตในหน่วยความจำ |
9 | preFlush() วิธีนี้เรียกว่าก่อนการล้าง |
Hibernate Interceptor ช่วยให้เราสามารถควบคุมได้ทั้งหมดว่าวัตถุจะมีลักษณะอย่างไรกับทั้งแอปพลิเคชันและฐานข้อมูล
วิธีใช้ Interceptors?
ในการสร้างเครื่องสกัดกั้นคุณสามารถใช้งานได้ Interceptor คลาสโดยตรงหรือขยาย EmptyInterceptorชั้นเรียน ต่อไปนี้เป็นขั้นตอนง่ายๆในการใช้ฟังก์ชัน Hibernate Interceptor
สร้าง Interceptors
เราจะขยาย EmptyInterceptor ในตัวอย่างของเราโดยที่เมธอดของ Interceptor จะถูกเรียกโดยอัตโนมัติเมื่อ Employeeสร้างและอัปเดตวัตถุ คุณสามารถใช้วิธีการเพิ่มเติมตามความต้องการของคุณ
import java.io.Serializable;
import java.util.Date;
import java.util.Iterator;
import org.hibernate.EmptyInterceptor;
import org.hibernate.Transaction;
import org.hibernate.type.Type;
public class MyInterceptor extends EmptyInterceptor {
private int updates;
private int creates;
private int loads;
public void onDelete(Object entity, Serializable id,
Object[] state, String[] propertyNames, Type[] types) {
// do nothing
}
// This method is called when Employee object gets updated.
public boolean onFlushDirty(Object entity, Serializable id,
Object[] currentState, Object[] previousState, String[] propertyNames,
Type[] types) {
if ( entity instanceof Employee ) {
System.out.println("Update Operation");
return true;
}
return false;
}
public boolean onLoad(Object entity, Serializable id,
Object[] state, String[] propertyNames, Type[] types) {
// do nothing
return true;
}
// This method is called when Employee object gets created.
public boolean onSave(Object entity, Serializable id,
Object[] state, String[] propertyNames, Type[] types) {
if ( entity instanceof Employee ) {
System.out.println("Create Operation");
return true;
}
return false;
}
//called before commit into database
public void preFlush(Iterator iterator) {
System.out.println("preFlush");
}
//called after committed into database
public void postFlush(Iterator iterator) {
System.out.println("postFlush");
}
}
สร้างคลาส POJO
ตอนนี้ให้เราปรับเปลี่ยนตัวอย่างแรกของเราเล็กน้อยที่เราใช้ตาราง 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;
}
}
สร้างตารางฐานข้อมูล
ขั้นตอนที่สองคือการสร้างตารางในฐานข้อมูลของคุณ จะมีตารางหนึ่งตารางที่สอดคล้องกับแต่ละวัตถุคุณยินดีที่จะให้ความคงอยู่ พิจารณาวัตถุที่อธิบายไว้ข้างต้นจำเป็นต้องจัดเก็บและเรียกดูในตาราง 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)
);
สร้างไฟล์คอนฟิกูเรชันการแมป
ขั้นตอนนี้คือการสร้างไฟล์การแมปที่สั่งให้ไฮเบอร์เนต - วิธีการแมปคลาสหรือคลาสที่กำหนดกับตารางฐานข้อมูล
<?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>
สร้างคลาสแอปพลิเคชัน
สุดท้ายเราจะสร้างคลาสแอปพลิเคชันของเราด้วยเมธอด main () เพื่อเรียกใช้แอปพลิเคชัน ที่นี่ควรสังเกตว่าในขณะที่สร้างวัตถุเซสชันเราใช้คลาส Interceptor ของเราเป็นอาร์กิวเมนต์
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( new MyInterceptor() );
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( new MyInterceptor() );
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( new MyInterceptor() );
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( new MyInterceptor() );
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 ตามที่แสดงด้านบนและคอมไพล์
สร้างไฟล์ซอร์ส MyInterceptor.java ตามที่แสดงด้านบนและคอมไพล์
สร้างไฟล์ต้นฉบับ ManageEmployee.java ตามที่แสดงด้านบนและคอมไพล์
ดำเนินการไบนารี ManageEmployee เพื่อรันโปรแกรม
คุณจะได้รับผลลัพธ์ดังต่อไปนี้และบันทึกจะถูกสร้างขึ้นในตาราง EMPLOYEE
$java ManageEmployee
.......VARIOUS LOG MESSAGES WILL DISPLAY HERE........
Create Operation
preFlush
postFlush
Create Operation
preFlush
postFlush
Create Operation
preFlush
postFlush
First Name: Zara Last Name: Ali Salary: 1000
First Name: Daisy Last Name: Das Salary: 5000
First Name: John Last Name: Paul Salary: 10000
preFlush
postFlush
preFlush
Update Operation
postFlush
preFlush
postFlush
First Name: Zara Last Name: Ali Salary: 5000
First Name: John Last Name: Paul Salary: 10000
preFlush
postFlush
หากคุณตรวจสอบตารางพนักงานของคุณควรมีบันทึกดังต่อไปนี้ -
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>