黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Hibernate 實(shí)例

hibernate 實(shí)例

讓我們看一個(gè)獨(dú)立應(yīng)用程序利用 hibernate 提供 java 持久性的例子。

我們將通過(guò)不同的步驟使用 hibernate 技術(shù)創(chuàng)建 java 應(yīng)用程序。

 

創(chuàng)建 pojo 類(lèi)

創(chuàng)建應(yīng)用程序的第一步就是建立 java 的 pojo 類(lèi)或者其它類(lèi),這取決于即將要存放在數(shù)據(jù)庫(kù)中的應(yīng)用程序。我們可以考慮一下讓我們的 employee 類(lèi)使用 getxxxsetxxx 方法從而使它們變成符合 javabeans 的類(lèi)。

pojo (plain old java object) 是 java 的一個(gè)對(duì)象,這種對(duì)象不會(huì)擴(kuò)展或者執(zhí)行一些特殊的類(lèi)并且它的接口都是分別在 ejb 框架的要求下的。所有正常的 java 對(duì)象都是 pojo。

當(dāng)你設(shè)計(jì)一個(gè)存放在 hibernate 中的類(lèi)時(shí),最重要的是提供支持 javabeans 的代碼和在 employee 類(lèi)中像 id 屬性一樣可以當(dāng)做索引的屬性。

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ù)庫(kù)表

第二步就是在你的數(shù)據(jù)庫(kù)中創(chuàng)建表格。每一個(gè)你所愿意提供長(zhǎng)期留存的對(duì)象都會(huì)有一個(gè)對(duì)應(yīng)的表。上述的對(duì)象需要在下列的 rdbms 表中存儲(chǔ)和被檢索到:

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)建映射配置文件

這一步是創(chuàng)建一個(gè)映射文件從而指導(dǎo) hibernate 如何對(duì)數(shù)據(jù)庫(kù)的表映射定義的類(lèi)。

<?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的格式保存在一個(gè)文件中。我們將映射文檔保存在 employee.hbm.xml文件中。下面讓我們看看映射文檔相關(guān)的一些小細(xì)節(jié):

  • 映射文檔是一個(gè) xml 格式的文檔,它擁有<hibernate-mapping>作為根元素,這個(gè)元素包含了所有的 <class>元素。
  • <class> 元素被用來(lái)定義從 java 類(lèi)到數(shù)據(jù)庫(kù)表的特定的映射。java 類(lèi)的名稱(chēng)是特定的,它使用的是類(lèi)元素的 name 屬性,數(shù)據(jù)庫(kù)表的名稱(chēng)也是特定的,它使用的是 table 屬性。
  • <meta> 元素是一個(gè)可選元素,它可以用來(lái)創(chuàng)建類(lèi)的描述。
  • <id> 元素向數(shù)據(jù)庫(kù)的主要關(guān)鍵字表映射類(lèi)中的特定的 id 屬性。id 元素的 name 屬性涉及到了類(lèi)中的屬性同時(shí) column 屬性涉及到了數(shù)據(jù)庫(kù)表中的列。type 屬性掌握了 hibernate 的映射類(lèi)型,這種映射類(lèi)型將會(huì)從 java 轉(zhuǎn)到 sql 數(shù)據(jù)類(lèi)型。
  • id 元素中的 <generator>元素是用來(lái)自動(dòng)產(chǎn)生主要關(guān)鍵字的值的。將 generator 元素的 class 屬性設(shè)置成 native 從而使 hibernate 運(yùn)用 identity, sequence 或者 hilo 算法依靠基礎(chǔ)數(shù)據(jù)庫(kù)的性能來(lái)創(chuàng)建主要關(guān)鍵字。
  • <property> 元素是用來(lái)映射一個(gè) java 類(lèi)的屬性到數(shù)據(jù)庫(kù)的表中的列中。這個(gè)元素的 name 屬性涉及到類(lèi)中的屬性,column 屬性涉及到數(shù)據(jù)表中的列。type 屬性控制 hibernate 的映射類(lèi)型,這種映射類(lèi)型將會(huì)從 java 轉(zhuǎn)到 sql 數(shù)據(jù)類(lèi)型。

映射文檔中還有許多其它的屬性和元素,在探討其它的 hibernate 相關(guān)的話(huà)題時(shí)我將會(huì)詳細(xì)進(jìn)行講解。

 

創(chuàng)建應(yīng)用程序類(lèi)

最后,我們將要使用 main() 方法創(chuàng)建應(yīng)用程序類(lèi)來(lái)運(yùn)行應(yīng)用程序。我們將用這個(gè)程序來(lái)保存一些 employee 的記錄,然后我們將在這些記錄上應(yīng)用 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();
      }
   }
}

 

編譯和執(zhí)行

下面是編譯和運(yùn)行上述提到的應(yīng)用程序的步驟。在編譯和執(zhí)行應(yīng)用程序之前確保你已經(jīng)設(shè)置好了 pathclasspath

  • 創(chuàng)建設(shè)置章節(jié)中所講的 hibernate.cfg.xml 配置文件。
  • 創(chuàng)建上文所述的 employee.hbm.xml 映射文件。
  • 創(chuàng)建上文所述的 employee.java 源文件并且進(jìn)行編譯。
  • 創(chuàng)建上文所述的 manageemployee.java 源文件并且進(jìn)行編譯。
  • 執(zhí)行二進(jìn)制的 manageemployee 來(lái)運(yùn)行程序。

你將會(huì)得到如下結(jié)果,記錄將會(huì)在 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 表,它將會(huì)有如下記錄:

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>

下一節(jié):hibernate 映射

hibernate 教程

相關(guān)文章