spring-data-jpa中findOne與getOne的區別 getOne沒數據 findOne有數據


項目中用到了spring-data-jpa,今天在寫一個update方法的時候報了個空指針,看了看是因為一個對象中的關聯沒有取出來,我用的是getOne取得這個對象,加斷點看以一下這個對象是個hibernate的代理對象,而不是實體,里面基本沒有值。

然后我又換成findOne試了一下,斷點查看這個取出來的對象,這個對象是實體,關聯也有。

findOne與getOne的注釋中也有些幫助

/**
     * Retrieves an entity by its id.
     * 
     * @param id must not be {@literal null}.
     * @return the entity with the given id or {@literal null} if none found
     * @throws IllegalArgumentException if {@code id} is {@literal null}
     */
    T findOne(ID id);
 
/**
     * Returns a reference to the entity with the given identifier.
     * 
     * @param id must not be {@literal null}.
     * @return a reference to the entity with the given identifier.
     * @see EntityManager#getReference(Class, Object)
     */
    T getOne(ID id);

 


注意getOne是“Returns a reference“


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM