1. 程式人生 > >Intellij IDEA下的第一個Hibernate專案

Intellij IDEA下的第一個Hibernate專案

               

       下面我要講的建立方式,可能更加原生態,更加類似於Eclipse下建立Hibernate專案的方式,我想這也有助於對在Intellij IDEA下建立Hibernate專案的理解。

       首先需要在Intellij IDEA下建立一個專案Project,相當於Eclipse下的workspace(工作空間),當然如果你此時選擇了建立Hibernate專案的方式,Intellij 在建立Project成功後會在Project下建立這一Hibernate專案。可能看起來有點奇怪,沒關係,我們可以把預設建立的東西刪除,然後建立我們的Module,相當於Eclipse下的Project。

       建立Module --》選擇 Java Enterprise選項卡,點選右側,勾選Web Application 和 Hibernate,如下:

       選擇右下角的 Configure... ,選擇Module Library:

       點選下一步,輸入Module的名稱,這裡我取名為:Hibernate_00,如:

       等待 Hibernate 相關jar包下載完畢……

       還需要新增mysql-jdbc jar包 和 junit jar包(junit jar包實際中可以不新增,根據實際需要進行新增):

      對Hibernate_00 右鍵,選擇 Open Module Settings,或者按F4:

 選擇 From Maven。

       以同樣的方式下載 junit jar包並進行新增:

       為方便以後建立Hibernate專案,可以為 hibernate 的配置檔案建立模板:

       hibernate.cfg.xml 模板內容如下(實際中應該進行相應的修改):

<?xml version='1.0' encoding='utf-8'?><!DOCTYPE hibernate-configuration PUBLIC        "-//Hibernate/Hibernate Configuration DTD//EN"        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>    <session-factory>        <property name="connection.username">root</property>        <property name="connection.password"></property>        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>        <property name="connection.url">jdbc:mysql:///hibernate?useUnicode=true&characterEncoding=UTF-8</property>        <property name="dialect">org.hibernate.dialect.MySQLDialect</property>        <property name="show_sql">true</property>        <property name="format_sql">true</property>        <property name="hbm2ddl.auto">create</property>        <mapping resource="Students.hbm.xml"/>        <!-- DB schema will be updated if needed -->        <!-- <property name="hbm2ddl.auto">update</property> -->    </session-factory></hibernate-configuration>

       同樣地方式,建立物件/關係對映的配置檔案模板,這裡建立 entity2.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>    <class name="Students" table="students">        <id name="sid" type="int">            <column name="sid"/>            <generator class="assigned"/>        </id>        <property name="sname" type="java.lang.String">            <column name="sname"/>        </property>        <property name="gender" type="java.lang.String">            <column name="gender"/>        </property>        <property name="birthday" type="java.util.Date">            <column name="birthday"/>        </property>        <property name="address" type="java.lang.String">            <column name="address"/>        </property>    </class></hibernate-mapping>
       現在準備工作做好後,我們可以根據模板在src下建立 hibernate 配置檔案 hibernate.cfg.xml:(參考:Creating hibernate.cfg.xml
<?xml version='1.0' encoding='utf-8'?><!DOCTYPE hibernate-configuration PUBLIC        "-//Hibernate/Hibernate Configuration DTD//EN"        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd"><hibernate-configuration>    <session-factory>        <property name="connection.username">root</property>        <property name="connection.password"></property>        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>        <property name="connection.url">jdbc:mysql:///hibernate?useUnicode=true&characterEncoding=UTF-8</property>        <property name="dialect">org.hibernate.dialect.MySQLDialect</property>        <property name="show_sql">true</property>        <property name="format_sql">true</property>        <property name="hbm2ddl.auto">create</property>        <mapping resource="Students.hbm.xml"/>        <!-- DB schema will be updated if needed -->        <!-- <property name="hbm2ddl.auto">update</property> -->    </session-factory></hibernate-configuration>
       在src下建立 Students 類:
import java.util.Date;/** * Created by DreamBoy on 2016/5/15. *///學生類public class Students {    //1. 必須為公有的類    //2. 必須提供公有的不帶引數的預設的構造方法    //3. 屬性私有    //4. 屬性setter/getter封裝    private int sid; //學號    private String sname; //姓名    private String gender; //性別    private Date birthday; //出生日期    private String address; //地址    public Students() {    }    public Students(int sid, String sname, String gender, Date birthday, String address) {        this.sid = sid;        this.sname = sname;        this.gender = gender;        this.birthday = birthday;        this.address = address;    }    public int getSid() {        return sid;    }    public void setSid(int sid) {        this.sid = sid;    }    public String getSname() {        return sname;    }    public void setSname(String sname) {        this.sname = sname;    }    public String getGender() {        return gender;    }    public void setGender(String gender) {        this.gender = gender;    }    public Date getBirthday() {        return birthday;    }    public void setBirthday(Date birthday) {        this.birthday = birthday;    }    public String getAddress() {        return address;    }    public void setAddress(String address) {        this.address = address;    }    @Override    public String toString() {        return "Students{" +                "sid=" + sid +                ", sname='" + sname + '\'' +                ", gender='" + gender + '\'' +                ", birthday=" + birthday +                ", address='" + address + '\'' +                '}';    }}
       在src下建立 物件/關係對映的配置檔案(根據模板進行建立) Students.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>    <class name="Students" table="students">        <id name="sid" type="int">            <column name="sid"/>            <generator class="assigned"/>        </id>        <property name="sname" type="java.lang.String">            <column name="sname"/>        </property>        <property name="gender" type="java.lang.String">            <column name="gender"/>        </property>        <property name="birthday" type="java.util.Date">            <column name="birthday"/>        </property>        <property name="address" type="java.lang.String">            <column name="address"/>        </property>    </class></hibernate-mapping>

       在hibernate.cfg.xml 配置檔案中新增Students物件的對映。(前面的配置檔案中已新增)

<mapping resource="Students.hbm.xml"/>

       在Module下建立test目錄,為了能在該目錄中建立java類,需要將目錄修改為 Sources Root:

       此時才可以建立java類:StudentsTest.java

(這裡使用到 junit 中的註解 @Test、@Before、@After)

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.After;import org.junit.Before;import org.junit.Test;import java.util.Date;/** * Created by DreamBoy on 2016/5/15. *///測試類public class StudentsTest {    private SessionFactory sessionFactory;    private Session session;    private Transaction transaction;    @Before    public void init() {        //建立配置物件        Configuration config = new Configuration().configure();        //建立服務註冊物件        ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(config.getProperties()).buildServiceRegistry();        //建立會話工廠物件        sessionFactory = config.buildSessionFactory(serviceRegistry);        //會話物件        session = sessionFactory.openSession();        //開啟事務        transaction = session.beginTransaction();    }    @After    public void destory() {        transaction.commit(); //提交事務        session.close(); //關閉會話        sessionFactory.close(); //關閉會話工廠    }    @Test    public void testSaveStudents() {        //生成學生物件        Students s = new Students(1, "張三丰", "男", new Date(), "武當山");        session.save(s); //儲存物件進入資料庫    }}

       在hibernate.cfg.xml配置檔案中,可以知道,這裡我配置使用的資料庫,名為hibernate,所以我們需要在執行程式前,使用mysql建立好 hibernate 資料庫,不用建立Students表。

       執行 StudentsTest.java ,可能會出現如下錯誤:

       大概是java編譯輸出的位置出錯了,所以要對output輸出路徑進行配置:

       這裡選擇在當前Module下classes資料夾下:

       再次執行程式:

       程式執行成功,我們可以檢視一下資料庫,會發現程式已經幫我們自動建立好了資料表,並添加了一條資料:

       成功執行Hibernate專案。