hibernate框架學習筆記8:一對多關係案例

来源:https://www.cnblogs.com/xuyiqing/archive/2018/02/18/8453165.html
-Advertisement-
Play Games

兩個實體類:客戶與聯繫人,一個客戶可以有多個聯繫人 客戶類: package domain; import java.util.HashSet; import java.util.Set; //客戶實體 public class Customer { private Long cust_id; pr ...


兩個實體類:客戶與聯繫人,一個客戶可以有多個聯繫人

客戶類:

package domain;

import java.util.HashSet;
import java.util.Set;

//客戶實體
public class Customer {
    
    private Long cust_id;
    private String cust_name;
    private String cust_source;
    private String cust_industry;
    private String cust_level;
    private String cust_linkman;
    private String cust_phone;
    private String cust_mobile;
    //使用set集合,表達一對多關係
    private Set<LinkMan> linkMens = new HashSet<LinkMan>();

    public Set<LinkMan> getLinkMens() {
        return linkMens;
    }
    public void setLinkMens(Set<LinkMan> linkMens) {
        this.linkMens = linkMens;
    }
    public Long getCust_id() {
        return cust_id;
    }
    public void setCust_id(Long cust_id) {
        this.cust_id = cust_id;
    }
    public String getCust_name() {
        return cust_name;
    }
    public void setCust_name(String cust_name) {
        this.cust_name = cust_name;
    }
    public String getCust_source() {
        return cust_source;
    }
    public void setCust_source(String cust_source) {
        this.cust_source = cust_source;
    }
    public String getCust_industry() {
        return cust_industry;
    }
    public void setCust_industry(String cust_industry) {
        this.cust_industry = cust_industry;
    }
    public String getCust_level() {
        return cust_level;
    }
    public void setCust_level(String cust_level) {
        this.cust_level = cust_level;
    }
    public String getCust_linkman() {
        return cust_linkman;
    }
    public void setCust_linkman(String cust_linkman) {
        this.cust_linkman = cust_linkman;
    }
    public String getCust_phone() {
        return cust_phone;
    }
    public void setCust_phone(String cust_phone) {
        this.cust_phone = cust_phone;
    }
    public String getCust_mobile() {
        return cust_mobile;
    }
    public void setCust_mobile(String cust_mobile) {
        this.cust_mobile = cust_mobile;
    }
    @Override
    public String toString() {
        return "Customer [cust_id=" + cust_id + ", cust_name=" + cust_name + "]";
    }
}
View Code

聯繫人類:

package domain;

//聯繫人實體
public class LinkMan {
    private Long lkm_id;
    private Character lkm_gender;
    private String lkm_name;
    private String lkm_phone;
    private String lkm_email;
    private String lkm_qq;
    private String lkm_mobile;
    private String lkm_memo;
    private String lkm_position;

    // 表達多對一關係
    private Customer customer;

    public Customer getCustomer() {
        return customer;
    }

    public void setCustomer(Customer customer) {
        this.customer = customer;
    }

    public Long getLkm_id() {
        return lkm_id;
    }

    public void setLkm_id(Long lkm_id) {
        this.lkm_id = lkm_id;
    }

    public Character getLkm_gender() {
        return lkm_gender;
    }

    public void setLkm_gender(Character lkm_gender) {
        this.lkm_gender = lkm_gender;
    }

    public String getLkm_name() {
        return lkm_name;
    }

    public void setLkm_name(String lkm_name) {
        this.lkm_name = lkm_name;
    }

    public String getLkm_phone() {
        return lkm_phone;
    }

    public void setLkm_phone(String lkm_phone) {
        this.lkm_phone = lkm_phone;
    }

    public String getLkm_email() {
        return lkm_email;
    }

    public void setLkm_email(String lkm_email) {
        this.lkm_email = lkm_email;
    }

    public String getLkm_qq() {
        return lkm_qq;
    }

    public void setLkm_qq(String lkm_qq) {
        this.lkm_qq = lkm_qq;
    }

    public String getLkm_mobile() {
        return lkm_mobile;
    }

    public void setLkm_mobile(String lkm_mobile) {
        this.lkm_mobile = lkm_mobile;
    }

    public String getLkm_memo() {
        return lkm_memo;
    }

    public void setLkm_memo(String lkm_memo) {
        this.lkm_memo = lkm_memo;
    }

    public String getLkm_position() {
        return lkm_position;
    }

    public void setLkm_position(String lkm_position) {
        this.lkm_position = lkm_position;
    }

}
View Code

 

Customer.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="domain" >
    <class name="Customer" table="cst_customer" >
        <id name="cust_id"  >
            <generator class="native"></generator>
        </id>
        <property name="cust_name" column="cust_name" ></property>
        <property name="cust_source" column="cust_source" ></property>
        <property name="cust_industry" column="cust_industry" ></property>
        <property name="cust_level" column="cust_level" ></property>
        <property name="cust_linkman" column="cust_linkman" ></property>
        <property name="cust_phone" column="cust_phone" ></property>
        <property name="cust_mobile" column="cust_mobile" ></property>
    
        <!-- 集合,一對多關係,在配置文件中配置 -->
        <!-- 
            name屬性:集合屬性名
            column屬性: 外鍵列名
            class屬性: 與我關聯的對象完整類名
         -->
        <set name="linkMens">
            <key column="lkm_cust_id" ></key>
            <one-to-many class="LinkMan" />
        </set>
        
    
    </class>
</hibernate-mapping>
View Code

 

LinkMan.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="domain" >
    <class name="LinkMan" table="cst_linkman" >
        <id name="lkm_id"  >
            <generator class="native"></generator>
        </id>
        <property name="lkm_gender"  ></property>
        <property name="lkm_name"  ></property>
        <property name="lkm_phone"  ></property>
        <property name="lkm_email"  ></property>
        <property name="lkm_qq"  ></property>
        <property name="lkm_mobile"  ></property>
        <property name="lkm_memo"  ></property>
        <property name="lkm_position"  ></property>
        
        <!-- 多對一 -->
        <!-- 
            name屬性:引用屬性名
            column屬性: 外鍵列名
            class屬性: 與我關聯的對象完整類名
         -->
        <many-to-one name="customer" column="lkm_cust_id" class="Customer"  ></many-to-one>
    </class>
</hibernate-mapping>
View Code

 

核心配置文件:

hibernate.cfg.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
        <!-- 資料庫驅動 -->
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <!-- 資料庫url -->
        <property name="hibernate.connection.url">jdbc:mysql:///hibernate</property>
        <!-- 資料庫連接用戶名 -->
        <property name="hibernate.connection.username">root</property>
        <!-- 資料庫連接密碼 -->
        <property name="hibernate.connection.password">xuyiqing</property>
        
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        <!-- 將hibernate生成的sql語句列印到控制台 -->
        <property name="hibernate.show_sql">true</property>
        <!-- 將hibernate生成的sql語句格式化(語法縮進) -->
        <property name="hibernate.format_sql">true</property>
        
        <property name="hibernate.hbm2ddl.auto">update</property>
        <!-- 引入orm元數據 路徑書寫: 填寫src下的路徑 -->
        
        <property name="hibernate.connection.isolation">4</property>
         
        <!-- 指定session與當前線程綁定 -->
        <property name="hibernate.current_session_context_class">thread</property>
        
        <mapping resource="domain/Customer.hbm.xml" />
        <mapping resource="domain/LinkMan.hbm.xml" />

    </session-factory>
</hibernate-configuration>
View Code

 

自定義工具類:

package utils;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class HibernateUtils {
    private static SessionFactory sf;
    
    static{
        //1 創建,調用空參構造
        Configuration conf = new Configuration().configure();
        //2 根據配置信息,創建 SessionFactory對象
         sf = conf.buildSessionFactory();
    }
    
    //獲得session => 獲得全新session
    public static Session openSession(){
                //3 獲得session
                Session session = sf.openSession();
                
                return session;
        
    }
    //獲得session => 獲得與線程綁定的session
    public static Session getCurrentSession(){
        //3 獲得session
        Session session = sf.getCurrentSession();
        
        return session;
    }    
}
View Code

 

測試類:

package oneTomany;

import org.hibernate.Session;
import org.hibernate.Transaction;
import org.junit.Test;

import domain.Customer;
import domain.LinkMan;
import utils.HibernateUtils;

//一對多|多對一關係操作
public class Demo {
    @Test
    //保存客戶 以及客戶 下的聯繫人
    public void fun1(){
        //1 獲得session
        Session session = HibernateUtils.openSession();
        //2 開啟事務
        Transaction tx = session.beginTransaction();
        //-------------------------------------------------
        //3操作
        Customer c = new Customer();
        c.setCust_name("騰訊");
        
        LinkMan lm1 = new LinkMan();
        lm1.setLkm_name("馬化騰");
        
        LinkMan lm2 = new LinkMan();
        lm2.setLkm_name("張三");
        
        //表達一對多,客戶下有多個聯繫人
        c.getLinkMens().add(lm1);
        c.getLinkMens().add(lm2);
        
        //表達多對一,聯繫人屬於哪個客戶
        lm1.setCustomer(c);
        lm2.setCustomer(c);
        
        
        session.save(c);
        session.save(lm1);
        session.save(lm2);
        //-------------------------------------------------
        //4提交事務
        tx.commit();
        //5關閉資源
        session.close();
    }
    
    @Test
    //為客戶增加聯繫人
    public void fun2(){
        //1 獲得session
        Session session = HibernateUtils.openSession();
        //2 開啟事務
        Transaction tx = session.beginTransaction();
        //-------------------------------------------------
        //3操作
        //1> 獲得要操作的客戶對象
        Customer c = session.get(Customer.class,1l);
        //2> 創建聯繫人
        LinkMan lm1 = new LinkMan();
        lm1.setLkm_name("李四");
        //3> 將聯繫人添加到客戶,將客戶設置到聯繫人中
        c.getLinkMens().add(lm1);
        lm1.setCustomer(c);
        //4> 執行保存
        session.save(lm1);
        //-------------------------------------------------
        //4提交事務
        tx.commit();
        //5關閉資源
        session.close();
    }
    
    @Test
    //為客戶刪除聯繫人
    public void fun3(){
        //1 獲得session
        Session session = HibernateUtils.openSession();
        //2 開啟事務
        Transaction tx = session.beginTransaction();
        //-------------------------------------------------
        //3操作
        //1> 獲得要操作的客戶對象
        Customer c = session.get(Customer.class,1l);
        //2> 獲得要移除的聯繫人
        LinkMan lm = session.get(LinkMan.class, 3l);
        //3> 將聯繫人從客戶集合中移除
        c.getLinkMens().remove(lm);
        lm.setCustomer(null);
        //-------------------------------------------------
        //4提交事務
        tx.commit();
        //5關閉資源
        session.close();
    }
        
}

 

 

進階操作一:cascade

上邊fun1代碼這一段:

        session.save(c);
        session.save(lm1);
        session.save(lm2);

這裡發現:如果有很多個聯繫人,依次保存聯繫人代碼量大,有沒有一種方法,在保存客戶的同時保存所有的聯繫人呢?

級聯操作: cascade
save-update: 級聯保存更新
delete:級聯刪除
all:save-update+delete
級聯操作: 簡化操作.目的就是為了少些兩行代碼.

配置文件:

        <set name="linkMens" cascade="save-update"  >
            <key column="lkm_cust_id" ></key>
            <one-to-many class="LinkMan" />
        </set>

 

這裡就做到了級聯保存

同樣還有級聯刪除:刪除客戶,那麼所有該客戶所有聯繫人都將被刪除

 

註意:客戶和聯繫人配置文件都可以設置cascade屬性

 

 

 

進階操作二:

關係維護屬性:inverse

多表操作的時候,會自動維護雙方,影響效率,這裡可以取消其中的維護以提高效率

在這裡,客戶一方可以不維護(即設置該屬性為true)

        <set name="linkMens" inverse="true" cascade="delete"  >
            <key column="lkm_cust_id" ></key>
            <one-to-many class="LinkMan" />
        </set>

 

inverse屬性: 配置關係是否維護.
true: customer不維護關係
false(預設值): customer維護關係

inverse屬性: 性能優化.提高關係維護的性能.
原則: 無論怎麼放棄,總有一方必須要維護關係.


註意:

一對多關係中: 一的一方放棄.也只能一的一方放棄.多的一方不能放棄.


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • SQL Server 2008基於策略的管理,基於策略的管理(Policy Based Management),使DBA們可以制定管理策略,並將這些策略應用到伺服器、資料庫以及數據環境中的其他對象上去。基於動作策略(Action Policy)的異常處理使開發人員可以為異常處理制定策略,簡單的說,動 ...
  • 較複雜的應用程式都是由多個項目組織成的,項目可以劃分成程式集(Assemblies)和宿主(Hosts),也就是應用程式的入口。 Assemblies 通常是常見的類庫項目,包括可以重用的功能以方便測試,通常包括下麵的組件: Views, Controllers 和 Models; 服務; 持久類 ...
  • 在.NET上現在存在許多的依賴註入容器, 如:Castle Windsor、StructureMap、Autofac 、Unity。 這裡主要介紹一下Autofac,Autofac和其他容器的不同之處是它和C#語言的結合非常緊密,在使用過程中對你的應用的侵入性幾乎為零,更容易與第三方的組件集成。Au ...
  • 1 學習計劃 1、datagrid使用方法(重要) n 將靜態HTML渲染為datagrid樣式 n 發送ajax請求獲取json數據創建datagrid n 使用easyUI提供的API創建datagrid(掌握) 2、實現取派員分頁查詢 n 調整頁面基於datagrid發送ajax請求 n 創建 ...
  • 員工與角色案例: 一個員工可以是多種角色(總監,經理),一種角色可以是多個員工(保潔) 這裡發現無法使用外鍵表達關係,多對多總是創建第三張表來維護關係 這張表至少兩列,都是外鍵,分別引用兩張表的主鍵 員工(用戶)實體類: package domain; //用戶實體 import java.util ...
  • 本文簡要介紹了Spring,及Spring中IOC及DI的基本使用。 ...
  • https://www.patest.cn/contests/pat-b-practise/1038 ...
  • 1、List和Set介面繼承自Collection介面,而Map不是繼承的Collection介面 2.、List介面 List介面有三個實現類:LinkedList,ArrayList,Vector LinkedList:底層基於鏈表實現,鏈表記憶體是散亂的,每一個元素存儲本身記憶體地址的同時還存儲下 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...