您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么解決JPA @OneToMany及懶加載無效的問題”,在日常操作中,相信很多人在怎么解決JPA @OneToMany及懶加載無效的問題問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么解決JPA @OneToMany及懶加載無效的問題”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
JPA @OneToMany及懶加載無效
@OneToMany
小結(jié)一下吧
實現(xiàn)JPA的懶加載和無外鍵
例如
轉(zhuǎn)換時使用
@OneToOne @ManyToMany使用不做過多解釋,重點解決“懶加載無效問題”。
示例:
teacher 和 student是一對多關(guān)系
只需要在studentList上使用@OneToMany注解,對應(yīng)的參數(shù)為 懶加載、級聯(lián)操作、子表外鍵
我為了驗證懶加載是否生效,在debug模式下發(fā)現(xiàn)懶加載并沒有生效。在正常模式下,返回到頁面也是有studentList的數(shù)據(jù)。于是開始排坑,逐漸懷疑人生。。
直到看到了某國際友人說的這么一句話。
It seems to be a debugging artifact.
At debugging time, because the transaction is still open, the watched lazy loaded entity properties will be loaded at the breakpoint evaluation time.
于是在application.properties中加上spring.jpa.show-sql=true,打開執(zhí)行的SQL。
debug下,執(zhí)行到29行,共執(zhí)行了以下兩句SQL:
Hibernate: select teacher0_.id as id1_1_0_, teacher0_.age as age2_1_0_, teacher0_.name as name3_1_0_ from teacher teacher0_ where teacher0_.id=? Hibernate: select studentlis0_.teacher_id as teacher_4_0_0_, studentlis0_.id as id1_0_0_, studentlis0_.id as id1_0_1_, studentlis0_.addr as addr2_0_1_, studentlis0_.name as name3_0_1_, studentlis0_.teacher_id as teacher_4_0_1_ from student studentlis0_ where studentlis0_.teacher_id=?
開始只查詢了teacher表,緊接著進行了關(guān)聯(lián)查詢,結(jié)合上面那句話猜測可能是debug導(dǎo)致的。而在正常模式下啟動,也是兩條SQL,猜測可能是返回前端時,序列化自動調(diào)用了getStudentList()方法,導(dǎo)致執(zhí)行了第二條SQL。
于是新建TeacherDto.class
并在controller中return teacherDto,不直接返回teacher。
在正常模式下啟動,果然只有一條SQL,沒有進行級聯(lián)查詢。
Hibernate: select teacher0_.id as id1_1_0_, teacher0_.age as age2_1_0_, teacher0_.name as name3_1_0_ from teacher teacher0_ where teacher0_.id=?
至此踩坑結(jié)束……
在使用@OneToOne、@OneToMany、@ManyToMany時,只需要加上參數(shù)fetch = FetchType.LAZY即可。
在debug模式下,會自動進行級聯(lián)查詢,導(dǎo)致懶加載無效,可能是idea方便開發(fā)人員調(diào)試,故意這樣設(shè)置的。
在接口返回時,避免直接返回entity,可返回Dto或Vo。
在網(wǎng)上找了很多jpa的懶加載,要不就是抓取策略,要不就隨便加個fetch=FetchType.LAZY
其實jpa實現(xiàn)懶加載非常簡單,其實和mybatis是一樣的,就是不要調(diào)用對應(yīng)屬性的get方法就可以了
很多接口輸出對象時都會用 BeanUtils.copyProperties()將實體轉(zhuǎn)為dto輸出,這時候使用它的重載方法copyProperties(Object source, Object target, String… ignoreProperties)就可以實現(xiàn)懶加載了
代碼如下
public class NoticeRecord { @OneToMany(fetch=FetchType.LAZY) @JoinColumn(name = "noticeId",foreignKey = @ForeignKey(name = "null")) private List<NoticeSendeeRecord> noticeSendeeRecords; }
這個重載方法的作用就是轉(zhuǎn)換是忽略noticeRecord中noticeSendeeRecords屬性
BeanUtils.copyProperties(noticeRecord,noticeRecordDTO,"noticeSendeeRecords");
這樣就實現(xiàn)jpa的懶加載了,檢查輸出sql語句,也只有查詢NoticeRecord 的語句,沒有查詢NoticeSendeeRecord的語句
而不讓jpa產(chǎn)生外鍵使用 foreignKey = @ForeignKey(name = “null”) 就可以了
到此,關(guān)于“怎么解決JPA @OneToMany及懶加載無效的問題”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。