Hibernate 的helloworld

前言:hibernate 必須的jar包連接地址:https://pan.baidu.com/s/1i4D6Rf3java

固然你也能夠去官網自行下載,官網地址:http://hibernate.org/orm/downloads/,能夠選擇想要的版本,我這裏選的是:4.3.11.Final,mysql

截圖:sql

 

 

1.在ecplise 裏新建java Project 項目名稱hibernate-helloworld數據庫

2.在項目根目錄下建lib包,(1)而後把hibernate 必須的jar包拷入lib內,而後選中拷入的jar包,右鍵--->build path--->add to build path ,(2)而後在導入mysql驅動jar包。session

 

3.在src目錄下新建hibernate.cfg.xml 文件,文件內容以下:數據結構

hibernate.cfg.xmlapp

<?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="connection.username">root</property>
        <property name="connection.password">123456</property>
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://localhost:3306/hibernate5</property>
        
        <!-- 配置hibernate的基本信息 -->
        
        <!-- hibernate 所使用的數據庫方言 -->
        <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
        
        <!-- 執行操做時是否控制檯打印sql -->
        <property name="show_sql">true</property>
        
        <!-- 是否對sql 進行格式化 -->
        <property name="format_sql">true</property>
        
        <!-- 指定自動生成數據表策略ide

         create:會根據.hbm.xml來生成表,可是每次生成都會刪除上一次的表,從新生成表,哪怕兩次沒有任何改變ui

        create-drop:最經常使用值,也會根據.hbm.xml來生成表,但若.hbm.xml 文件和數據庫中對應的數據表的表結構不一樣,this

        higernate 將會更新表數據結構,但不會刪除已有的行和列

        validate:會和數據庫中的表進行比較,若 .hbm.xml 文件中的列在數據表中不存在,在拋出異常

       -->
        <property name="hbm2ddl.auto">update</property>
        
        <!-- 指定關聯的.hbm.xml文件 -->
        <mapping resource = "com/qimh/hibernate/helloworld/News.hbm.xml"/>
                
    </session-factory>
</hibernate-configuration>

 

4.建立持久化類,類內容以下:

注意,這裏先建立包: com.qimh.hibernate.helloworld,而後再此包下,創建News.java 類。

News.java

package com.qimh.hibernate.helloworld;

import java.sql.Date;

public class News {
    
    private Integer id;
    private String title;
    private String author;
    
    private Date date;
    
    
    
    
    public News() {
        super();
    }


    public News( String title, String author, Date date) {
        super();
        this.title = title;
        this.author = author;
        this.date = date;
    }

    @Override
    public String toString() {
        return "News [id=" + id + ", title=" + title + ", author=" + author
                + ", date=" + date + "]";
    }

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getAuthor() {
        return author;
    }

    public void setAuthor(String author) {
        this.author = author;
    }

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }
    
    
    

}
 

 

 

5.建立對象-關係映射文件,*.hbm.xml文件內容以下:

注意:在上面建立的包 com.qimh.hibernate.helloworld,目錄下新建News.hbm.xml 文件

News.hbm.xml

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!-- Generated 2016-12-26 13:18:50 by Hibernate Tools 3.4.0.CR1 -->
<hibernate-mapping>
    <class name="com.qimh.hibernate.helloworld.News" table="NEWS">
        <id name="id" type="java.lang.Integer">
            <column name="ID" />
            <!-- 指定主鍵的生成方式 ,naive:使用數據庫本地的方式-->
            <generator class="native" /><!-- assigned -->
        </id>
        <property name="title" type="java.lang.String">
            <column name="TITLE" />
        </property>
        <property name="author" type="java.lang.String">
            <column name="AUTHOR" />
        </property>
        <property name="date" type="java.sql.Date">
            <column name="DATE" />
        </property>
    </class>
</hibernate-mapping>

 

 

6.經過Hibernate API 編寫訪問數據庫的代碼,JUint Test Case類內容以下:

注意:1).與上面一樣,也是在com.qimh.hibernate.helloworld下創新此類

          2).這裏是new--->JUint Test Case,不是新建普通java類。

HibernateTest.java

package com.qimh.hibernate.helloworld;

import java.sql.Date;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;
import org.hibernate.service.ServiceRegistryBuilder;
import org.junit.Test;

public class HibernateTest {

    @Test
    public void test() {
        
        //1.創一個SessionFactory 對象
        SessionFactory sessionFactory = null;
        
        //1).建立一個Configuration 對象,對應hibernate 的基本配置信息和對象關係映射信息
        Configuration configuration = new Configuration().configure();
        //4.0以前這樣建立
//        sessionFactory = configuration.buildSessionFactory();
        
        //2).建立一個serviceRegistry 對象,:nibernate 4.x 新添加對象
        //hibernate 的任何配置和服務都須要在該對象中註冊後才能生效
        
        ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry(); 
        
        
        //3).
        sessionFactory = configuration.buildSessionFactory(serviceRegistry);
        
        
        //2.建立一個session對象
        Session session = sessionFactory.openSession();
        
        
        //3.開啓事物
        Transaction transaction = session.beginTransaction();
        
        
        //4.執行保存操做
        
        News news =  new News( "java", "qimh", new Date(new java.util.Date().getTime()));
        session.save(news);
        
        
        
        
        //5.提交事物
        transaction.commit();
        
        
        
        //6.關閉session
        session.close();
        
        //7.關閉sessionFactory
        sessionFactory.close();
        
        
        
    }

}
 

 

7.運行  結果:

1).run as--->JUnit Test,截圖以下:

 

 

2).hibernate會自動根據對象關係映射文件包把表自動建好,數據庫結果:

相關文章
相關標籤/搜索