91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何解決@DynamicUpdate //自動更新updatetime的問題

發布時間:2021-07-05 18:34:01 來源:億速云 閱讀:190 作者:chen 欄目:開發技術

這篇文章主要介紹“如何解決@DynamicUpdate //自動更新updatetime的問題”,在日常操作中,相信很多人在如何解決@DynamicUpdate //自動更新updatetime的問題問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何解決@DynamicUpdate //自動更新updatetime的問題”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

@DynamicUpdate //自動更新updatetime

在數據庫中的字節,包括updatetime,但是我更新某一個內容時,updatetime,沒有自動更新,這時候我們只需要在data類中加上注解 @DynamicUpdate 動態更新的意思

@Entity
@DynamicUpdate  //自動更新(動態更新)updatetime
public class ProductCategory {
 /*類目Id*/
    @Id              //主鍵
    @GeneratedValue(strategy = GenerationType.IDENTITY) //子增類型
    private Integer categoryId;
    /*類目名字*/
    private String categoryName;
    /*類目編號*/
    private Integer categoryType;
 
    /*創建時間*/
    private Date createTime;
    /*更新時間*/
    private Date updateTime;
 
 
    public Integer getCategoryId(int i) {
        return categoryId;
    }
 
    public void setCategoryId(Integer categoryId) {
        this.categoryId = categoryId;
    }
 
    public String getCategoryName() {
        return categoryName;
    }
 
    public void setCategoryName(String categoryName) {
        this.categoryName = categoryName;
    }
 
    public Integer getCategoryType() {
        return categoryType;
    }
 
    public void setCategoryType(Integer categoryType) {
        this.categoryType = categoryType;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    @Override
    public String toString() {
        return "ProductCategory{" +
                "categoryId=" + categoryId +
                ", categoryName='" + categoryName + '\'' +
                ", categoryType=" + categoryType +
                '}';
    }
 
}

@DynamicUpdate 注解使用及注意事項

 使用場景

平時在寫業務時, 會涉及到某條數據的更新。 當我們使用hibernate的 this.getCurrentSession().saveOrUpdate(o) 更新對象時,會默認的更新對象(o)所有的字段,包括屬性為null和未修改的字段也會更新到原有的數據庫表中。

造成了原有的數據丟失或數據重復修改。

通常這情況下我們所希望的是僅更新對象(o)中修改過且有值的字段,此時就需要用到@DynamicUpdate注解。

注解使用

標注位置: 實體映射類上

如何解決@DynamicUpdate //自動更新updatetime的問題

注意事項

如何解決@DynamicUpdate //自動更新updatetime的問題

根據官方接口文檔所說,如果我們在使用該注解時必須同時使用 @SelectBeforeUpdate 注解表明在更新前先進行查詢操作。否則是即使聲明該注解也是無效的。

個人理解:

也就是說當我們要更新的對象不在session會話的管理中,無法比對哪個字段需要更新,則所標注的注解無效。故需要在其更新前進行查詢,此時當前數據已經在sessio的會話中,即可動態更新數據。

到此,關于“如何解決@DynamicUpdate //自動更新updatetime的問題”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南召县| 陵水| 讷河市| 团风县| 宾阳县| 隆回县| 图木舒克市| 丹巴县| 安溪县| 怀安县| 富源县| 桓仁| 鄄城县| 甘德县| 武鸣县| 岳普湖县| 通城县| 苍溪县| 色达县| 台南县| 长兴县| 闸北区| 白山市| 永康市| 河间市| 故城县| 凤庆县| 金沙县| 云安县| 安庆市| 安西县| 余庆县| 铜鼓县| 邯郸市| 易门县| 颍上县| 泽普县| 临邑县| 景泰县| 大邑县| 岫岩|