Eclipse中hibernate串連mySQL資料庫練習

來源:互聯網
上載者:User

標籤:http   io   ar   os   使用   java   sp   for   strong   


(採用的是hibernate中XML配置方式串連資料庫,以後在更新其他方式的串連)

Hibernate就是Java後台資料庫持久層的架構,也是目前企業用最多的資料庫架構,主要是基於ORM -- object relationship Mapping,翻譯成中文叫“對象關係映射”,也就是將SQL這種非物件導向語言轉化成hibernation物件導向的寫法,本文將通過在Eclipse下搭建HIbernate架構

我所使用的Hibernate版本是Hibernate3.3.2,Hibernate官網下載www.hibernate.org

下面開始搭建hibernate資料庫:
1.在eclipse中建立Java project項目,名稱為:hibernateTest。右擊項目名稱,點擊property,選擇Java Build Path,加入需要匯入的JAR包。
2.在src檔案夾下,建立hibernate.cfg.xml設定檔,(串連資料庫的參數資訊)

hibernate.cfg.xml檔案代碼如下:
<?xml version="1.0" encoding="UTF-8"?> 
    <!DOCTYPE hibernate-configuration PUBLIC    
              "-//Hibernate/Hibernate Configuration DTD 3.0//EN"    
              "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> 
             
    <hibernate-configuration> 
        <session-factory> 
            <property name="hibernate.connection.driver_class"> 
                com.mysql.jdbc.Driver    
            </property> 
            <property name="hibernate.connection.url"> 
                jdbc:mysql://localhost:3306/test
            </property> 
            <!--  資料庫連接設定 --> 
           
            <property name="hibernate.connection.username">root</property> 
            <property name="hibernate.connection.password">123456</property> 
 
            <!-- show_sql 產生SQL語句輸出到日誌以供調式 --> 
            <property name="hibernate.show_sql">true</property> 
           
            <!-- SQL dialect 方言 --> 
            <property name="hibernate.dialect"> 
                org.hibernate.dialect.MySQLDialect  
            </property> 
           
             <!-- 指定session通過當前執行的線程來跟蹤和界定 -->
            <property name="hibernate.current_session_contecxt_class" >
                thread
            </property>
 
           
            <!-- 添加實體類的對應檔--> 
            <mapping resource="XXXXX.hbm.xml" /> 
    
        </session-factory> 
    </hibernate-configuration> 

3.在mySQL資料庫中有一個login表,欄位為id(int),name(string),password(string),在model包下建立login.java,
login.java檔案代碼如下:
public class login {
   
    private int id;
    private String name;
    private String password;
   
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getPassword() {
        return password;
    }
    public void setPassword(String password) {
        this.password = password;
    }
}


4.在該model包下,建立login.hbm.xml,用於映射資料庫欄位和表
login.hbm.xml檔案代碼如下:
<?xml version="1.0" encoding="UTF-8"?> 
    <!DOCTYPE hibernate-mapping PUBLIC 
            "-//Hibernate/Hibernate Mapping DTD 3.0//EN" 
            "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> 
           
    <hibernate-mapping package="x.model"> 
        <class name="login" table="login"> 
             <id name="id" type="java.lang.Integer"></id> 
            <property name="name" type="java.lang.String"  /> 
            <property name="password" type="java.lang.String" /> 
        </class> 
    </hibernate-mapping> 

5.在該model包下,建立testLogin.java作為測試檔案
TestLogin.java代碼如下:
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class test {
   
     public static void main(String a[])
     {
      login l = new login();
      l.setId(1);
      l.setName("456");
      l.setPassword("456");
     
      Configuration cfg = new Configuration();
      SessionFactory sf = cfg.configure().buildSessionFactory();
      Session session = sf.openSession();
      session.beginTransaction();
      session.save(l);
      session.getTransaction().commit();
      session.close();
      sf.close();
      System.out.print("success!");
     }
}

6.運行程式,運行成功。

Eclipse中hibernate串連mySQL資料庫練習

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.