資料庫修改多對多的中間表的記錄的技巧

來源:互聯網
上載者:User

一、把中間表相應的欄位先刪除,然後再添加
*當單方表是從資料庫中查得持久化對象必須把此對象的set容器用clear()清空,
*同時把一對多的級聯設定檔中的級聯風格設定為cascade="all,delete-orphan",
*把中間表中要修改的對象對應的資料全部刪除,
*通過save()或merge()重新持久化中間表的對象
------此種方法可以在只修改中間表的資料,而不修改單方表的資料時。
二、通過級聯來修改單方表同時修改中間表
*當單方表是從資料庫中查得持久化對象必須把此對象的set容器用clear()清空,
*同是把一對多的級聯設定檔中的級聯風格設定為cascade="all,delete-orphan",
*把中間表對應的po對象添加到單方表的set容器中,
*利用merger()修改單方表。
------此種方法可以在單方表和中間表同時修改時使用。

相關文章

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.