Hibernate 攔截器

hibernate 攔截器

hibernate 中的對(duì)象將被創(chuàng)建和保持。一旦對(duì)象被修改,它必須被保存到數(shù)據(jù)庫里。這個(gè)過程持續(xù)直到下一次對(duì)象被需要,它將被從持久的存儲(chǔ)中加載。

因此一個(gè)對(duì)象通過它生命周期中的不同階段,并且 interceptor 接口提供了在不同階段能被調(diào)用來進(jìn)行一些所需要的任務(wù)的方法。這些方法是從會(huì)話到應(yīng)用程序的回調(diào)函數(shù),允許應(yīng)用程序檢查或操作一個(gè)持續(xù)對(duì)象的屬性,在它被保存,更新,刪除或上傳之前。以下是在 interceptor 接口中可用的所有方法的列表。

s.n. 方法和描述
1 finddirty()
這個(gè)方法在當(dāng) flush() 方法在一個(gè) session 對(duì)象上被調(diào)用時(shí)被調(diào)用。
2 instantiate()
這個(gè)方法在一個(gè)持續(xù)的類被實(shí)例化時(shí)被調(diào)用。
3 isunsaved()
這個(gè)方法在當(dāng)一個(gè)對(duì)象被傳到 saveorupdate() 方法時(shí)被調(diào)用。
4 ondelete()
這個(gè)方法在一個(gè)對(duì)象被刪除前被調(diào)用。
5 onflushdirty()
這個(gè)方法在當(dāng) hibernate 探測(cè)到一個(gè)對(duì)象在一次 flush(例如,更新操作)中是臟的(例如,被修改)時(shí)被調(diào)用。
6 onload()
這個(gè)方法在一個(gè)對(duì)象被初始化之前被調(diào)用。
7 onsave()
這個(gè)方法在一個(gè)對(duì)象被保存前被調(diào)用。
8 postflush()
這個(gè)方法在一次 flush 已經(jīng)發(fā)生并且一個(gè)對(duì)象已經(jīng)在內(nèi)存中被更新后被調(diào)用。
9 preflush()
這個(gè)方法在一次 flush 前被調(diào)用。

hibernate 攔截器給予了我們一個(gè)對(duì)象如何應(yīng)用到應(yīng)用程序和數(shù)據(jù)庫的總控制。

 

如何使用攔截器?

為了創(chuàng)建一個(gè)攔截器你可以直接實(shí)現(xiàn) interceptor 類或者繼承 emptyinterceptor 類。以下是簡(jiǎn)單的使用 hibernate 攔截器功能的步驟。

 

創(chuàng)建攔截器

我們將在例子中繼承 emptyinterceptor,當(dāng) employee 對(duì)象被創(chuàng)建和更新時(shí)攔截器的方法將自動(dòng)被調(diào)用。你可以根據(jù)你的需求實(shí)現(xiàn)更多的方法。

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");
   }
}

 

創(chuàng)建 pojo 類

現(xiàn)在讓我們稍微修改我們的第一個(gè)例子,我們使用 employee 表單和 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;
   }
}

 

創(chuàng)建數(shù)據(jù)庫表

第二步將是在你的數(shù)據(jù)庫中創(chuàng)建表。一張表對(duì)應(yīng)每個(gè)你提供持久性的對(duì)象。考慮以上的對(duì)象需要被存儲(chǔ)和檢索到以下的 rdbm 表中:

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)
);

 

創(chuàng)建 mapping 配置文件

這個(gè)步驟是來創(chuàng)建一個(gè)指導(dǎo) hibernate 如何將定義的類或者多個(gè)類映射到數(shù)據(jù)庫表單中的映射文件。

<?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>

 

創(chuàng)建 application 類

最后,我們將用 main() 創(chuàng)建 application 類來運(yùn)行應(yīng)用程序。這里應(yīng)該注意當(dāng)創(chuàng)建 session 對(duì)象時(shí)我們使用 interceptor 類作為參數(shù)。

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();
      }
   }
}

 

編譯和執(zhí)行

這里是編譯和運(yùn)行上面提及的應(yīng)用程序的步驟。確保你已經(jīng)在處理編譯和執(zhí)行前正確設(shè)置了 path 和 classpath。

  • 創(chuàng)建在 configuration 章節(jié)中解釋的 hibernate.cfg.xml 配置文件。
  • 創(chuàng)建如上所示的 employee.hbm.xml 映射文件。
  • 創(chuàng)建如上所示的 employee.java 源文件并編譯。
  • 創(chuàng)建如上所示的 myinterceptor.java 源文件并編譯。
  • 創(chuàng)建如上所示的 manageemployee.java 源文件并編譯。
  • 執(zhí)行 manageemployee 來運(yùn)行程序。

你將得到以下結(jié)果,而且記錄將在 employee 表單中被創(chuàng)建。

$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

如果你檢查你的 employee 表單,它應(yīng)該有如下結(jié)果:

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>
相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频