鍍金池/ 問答/Java/ Spring boot data JPA數(shù)據(jù)庫映射關(guān)系

Spring boot data JPA數(shù)據(jù)庫映射關(guān)系

在使用映射關(guān)系時(shí)我們可以在主表或從表設(shè)置關(guān)聯(lián)關(guān)系就可以將這個(gè)兩個(gè)表關(guān)聯(lián)起來,查詢或者做其他操作時(shí),只需要查詢主表就可以將從表信息附帶出來,非常方便,簡潔。但是相對應(yīng)的問題就是,我只需要單獨(dú)查詢其中一個(gè)表時(shí),它會(huì)將關(guān)聯(lián)表信息給查詢出來,一旦關(guān)聯(lián)數(shù)據(jù)量很多,而我此時(shí)又不需要從表的數(shù)據(jù),這樣效率會(huì)大打折扣,請問各位大神有什么好的方法在我需要關(guān)聯(lián)時(shí)就關(guān)聯(lián)查詢,不需要關(guān)聯(lián)時(shí),可以不關(guān)聯(lián)查詢?求指導(dǎo)?

public class Class{
        @Id
        private String id;
        @Size(max = 20)
        @Column(unique = true)
        private String code;
        
        @Size(max = 200)
        private String name;
        ...
}

public class Student{
    @Id
    private String id;
    
    @Size(max = 20)
    private String code;
    
    @Size(max = 200)
    private String name;
    
    @ManyToOne
    private Class class;
    ...
}

百度了一下說在Student表的setClass上添加注解@JsonBackReference,可以防止數(shù)據(jù)轉(zhuǎn)換json時(shí),出現(xiàn)無限循環(huán)包含對方

@JsonBackReference
public void setClass(Class class) {
        this.class= class;
    }
回答
編輯回答
柒喵

在@ManyToOne中加入fetch = FetchType.LAZY,在調(diào)用getter時(shí)才會(huì)加載

2018年4月18日 23:41
編輯回答
墻頭草

在@OneToOne, @OneToMany, @ManyToOne中有一個(gè)屬性是fetch??梢栽O(shè)置兩個(gè)值,一個(gè)是LAZY,一個(gè)是EAGER。
如果是EAGER,那么表示取出這條數(shù)據(jù)時(shí),它關(guān)聯(lián)的數(shù)據(jù)也同時(shí)取出放入內(nèi)存中。
如果是LAZY,那么取出這條數(shù)據(jù)時(shí),它關(guān)聯(lián)的數(shù)據(jù)并不取出來,在同一個(gè)session中,什么時(shí)候要用,就什么時(shí)候取(再次訪問數(shù)據(jù)庫)。
OneToMany默認(rèn)是LAZY,其他都默認(rèn)是EAGER。

2017年1月28日 00:17