2016年7月22日 星期五

建置第一個Hibernate In Intellj

環境配置:

  • Intellj 1.4
  • JDBC4
  • Hibernate jar (少其中一個可能都會出錯)




















內容參考至:




Step1.檔案結構目錄
Step2.設置hibernate.cfg.xml
<hibernate-configuration>
    <session-factory>
        <!-- 顯示實際操作資料庫時的SQL -->
        <property name="show_sql">true</property>
        <!-- 將顯示的SQL排版,方便觀看 -->
        <property name="format_sql">true</property>
        <!-- SQL方言,這邊設定的是SQLServer -->
        <property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
        <!-- JDBC驅動程式 -->
        <property name="connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property>
        <!-- JDBC URL -->
        <property name="connection.url">jdbc:sqlserver://127.0.0.1:1433;DatabaseName=testdb</property>
        <!-- 資料庫使用者 -->
        <property name="connection.username">sa</property>
        <!-- 資料庫密碼 -->
        <property name="connection.password">578989</property>
        <!-- 物件與資料庫表格映射文件 -->
        <mapping resource="User.hbm.xml">
    </mapping></session-factory>
</hibernate-configuration>



Step3.設置User.hbm.xml
-重點注意事項
1.資料庫每個欄位都要記得設定到<property>
2.其中id是個特殊的屬性,Hibernate會使用它來作為主鍵識別,您可以定義主鍵產生的方式,這是在XML映射文件中完成
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping
        PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping>
    <!--<class>標籤的name屬性為所映射的物件,而table為所映射的表格;-->
    <class name="Hibernate.UserInformationEntity" table="user_information">
        <id name="id" column="id"> <!--<id>中 column屬性指定了表格欄位,而 type屬性指定了User實例的中的id之型態。-->
            <generator class="native"/> <!--<id>中主鍵的產生方式在這邊設定為"native",表示主鍵的生成方式由Hibernate根據資料庫Dialect 的定義來決定-->
            <!--<generator class="identity"/>-->
            <!--identity-->
        </id>
        <!--<property>標籤中的column與type都各自指明了表格中欄位與物件中屬性的對應。-->
        <property name="account" column="account"/>
        <property name="name" column="name"/>
        <property name="age" column="age"/>
        <property name="create_time" column="create_time"/>
    </class>
</hibernate-mapping>


Step4.建立實體,與表格對應
-重點注意事項
1.資料庫欄位『型態是甚麼』,實體就要設一樣,否則會出錯
ex.資料庫:age int not null  實體:int age;
public class UserInformationEntity {
    int id =0;
    String account;
    String name;
    int age = 0;
    Date create_time;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getAccount() {
        return account;
    }
    public void setAccount(String account) {
        this.account = account;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }
    public Date getCreate_time() {
        return create_time;
    }
    public void setCreate_time(Date create_time) {
        this.create_time = create_time;
    }
}
Sept5.設定SessionFactory實例,連線用 
-重點注意事項  
1.也可直接寫在main class之中,一個應用程式當中通常只需要一個SessionFactory實例, 為了方便整個應用取得同一個SessionFactory實例, 可以撰寫一個HibernateUtil類別 
2.要如何寫在main class可參考: http://blog.csdn.net/zs234/article/details/9108533
package Hibernate;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
/**
 * Created by ytchen on 2016/7/22.
 */
public class HibernateUtil {
    private static SessionFactory sessionFactory;
    static {
        try {
            sessionFactory = new Configuration().configure()
                    .buildSessionFactory();
        } catch (Throwable ex) {
            throw new ExceptionInInitializerError(ex);
        }
    }
    public static SessionFactory getSessionFactory() {
        return sessionFactory;
    }
    public static void shutdown() {
        getSessionFactory().close();
    }
Sept6.馬上來試用Hibernate吧 
package Hibernate;

import org.hibernate.Transaction;

import org.hibernate.Session;



import java.util.Date;



/**

 * Created by ytchen on 2016/7/22.

 */

public class HibernateDemo {

    public static void main(String[] args) {

        UserInformationEntity user = new UserInformationEntity();

        user.setAccount("Ian");

        user.setName("Ian");

        user.setAge(20);

        user.setCreate_time(new Date());



        // 開啟Session,相當於開啟JDBC的Connection

        Session session = HibernateUtil.getSessionFactory().openSession();

        // Transaction表示一組會話操作

        Transaction tx= session.beginTransaction();

        // 將物件映射至資料庫表格中儲存

        session.save(user);

        tx.commit();

        session.close();



        System.out.println("新增資料OK!請用Sqlserver觀看結果!");



        HibernateUtil.shutdown();

    }

}

2016年7月21日 星期四

Hibernate 心得

1.Hibernate簡介:

Hibernate 是「物件/關係對應」(Object/Relational Mapping)的解決方案,簡寫為ORM,簡單的說就是將 Java 中的物件與物件關係,映射至關聯式資料庫中的表格與表格之間的關係, Hibernate 提供了這個過程中自動對應轉換的方案。

白話:
直接將Java設計好的物件(存放欄位跟資料的物件),直接跟資料庫中的表格做連結,省下中間很多的設定


2.甚麼是物件:

  • 我們自己建的一個Class,用來存放資料庫欄位跟資料,之後可以new這個物件出來做事情
  • 利用Get & Set 做出存取的方法


public class EipMemberBean {
    String m_account = "";
    String m_password = "";
    String m_block = "";
    String m_name ="";
    String m_email ="";
    String m_gender ="";
    String m_create_date ="";
    String m_create_time ="";
    String ls_ad ="";

    public String getM_password() {
        return m_password;
    }

    public void setM_password(String m_password) {
        this.m_password = m_password;
    }

    public String getM_account() {
        return m_account;
    }

    public void setM_account(String m_account) {
        this.m_account = m_account;
    }

    public String getM_block() {
        return m_block;
    }

    public void setM_block(String m_block) {
        this.m_block = m_block;
    }

    public String getM_name() {
        return m_name;


    }

Windos.open傳值問題

重點注意:若chrome不能執行,請用IE

方法一:單純傳值法

母:
function openWindow(){
       window.open('upload.html','mywindow','width=400,height=200');
}

子:
function backToParent(){
    //opener(母視窗)的form1的輸入值 = 目前網頁(子視窗)form2輸入的值
    opener.document.form1.textInput.value = document.form2.input.value;
    window.close();
}


方法二:呼叫母視窗的某個方法,並帶參數

母:
function action4(){
 window.open('popupView.html','PopupView', config='height=350,width=350');
 
 //document.getElementById("myText").value = window.returnValue;  
}

function actionFather(Value){
 //alert("Value")
 var Value = Value;
 
}


子:

function action5(){
           window.opener.actionFather("haha"); //呼叫父視窗的actionFather方法,並把值傳過去給他
           window.close();   
}

2016年7月20日 星期三

jQuery-分頁顯示

資料來源: https://code.google.com/p/jquery-tablepage/


- 這是一個針對JQuery所開發的表格分頁plugin,
- 主要目的是讓使用者能夠針對現有的資料表格,不需要更改過多的程式碼,即可輕易的加入分頁的功能.

使用說明
步驟1: 引用plugin檔案(這邊用1.0版)



<script src="jquery-tablepage-1.0.js"></script>

步驟2: 針對要分頁的table,與顯示頁碼的span,分別設定一個id(span放在妳想要顯示的位置)
<table id='table_source'>...</table>
<span id='table_page'></span>

步驟3: 執行plugin
$("#table_source").tablepage($("#table_page"), 10);
第二個參數10,代表每一頁要顯示10筆資料

完成結果參考:
<!doctype html>
<html>
<head>
 <meta charset="utf-8">
 <link rel="stylesheet" href="">
 <script src=""></script>
 <title>Main</title>
 <!-- // 引用 jQuery.js 和 jQuery-TablePage.js -->
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
 <script src="jquery-tablepage-1.0.js"></script>
 
</head>
<body>


<table id="tbl" border="1">
    <thead>
  <tr >
   <th align="left" >Name</th>
   <th align="left" >Content</th>
  </tr>
    </thead>
 <tbody>
  <tr>
   <td>Name1</td>
   <td>Content1</td>
  <tr>
  <tr>
   <td>Name2</td>
   <td>Content2</td>
  <tr>
  <tr>
   <td>Name3</td>
   <td>Content3</td>
  <tr>
  <tr>
   <td>Name4</td>
   <td>Content4</td>
  <tr>
  <tr>
   <td>Name5</td>
   <td>Content5</td>
  <tr>
  <tr>
   <td>Name6</td>
   <td>Content6</td>
  <tr>
 </tbody>
</table>
 
<!-- // 放分頁的 HTML 物件 -->
<span id='table_page'></span>


<!-- // 使用 TablePage 功能,參數1是放分頁的 HTML 物件,例如 span,參數2是每頁幾筆 -->
<script>
$("#tbl").tablepage($("#table_page"), 6);
</script>

</body>
<html>