您好,登錄后才能下訂單哦!
SpringBoot項(xiàng)目中使用JPA如何實(shí)現(xiàn)表關(guān)聯(lián)查詢?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。
例子中總共有兩個(gè)實(shí)體類,一個(gè)是Floor(商品樓層類),另一個(gè)是FloorContent(商品樓層內(nèi)容表)。下面看兩張表的源代碼:
Floor類:
package cms.model; import cms.model.base.BaseDomain; import org.hibernate.annotations.GenericGenerator; import javax.persistence.*; import java.io.Serializable; import java.util.List; /** * Created by Roney on 2016/10/10. * 樓層管理 * */ @Entity @Table(indexes = {@Index(name = "idx_floor_user",columnList = "user_id")}) public class Floor extends BaseDomain implements Serializable { @Id @GenericGenerator(name = "PKUUID", strategy = "uuid2") @GeneratedValue(generator = "PKUUID") @Column(length = 36) protected String id; /** * 發(fā)布用戶ID */ @Column(length = 36,name = "user_id") private String userId; /** * 樓層名稱 */ private String name; /** * 樓層的模板路徑 */ private String templateUrl; /** * 類型 * 1.管理端 * 2.供應(yīng)商 */ private Integer type; /** * 排序 */ @Column(name = "show_index", nullable = false) private Integer showIndex; /** * 是否禁用 * */ @Column(nullable = false) private Boolean isDisable=false; @OneToMany(fetch = FetchType.LAZY,mappedBy = "floor") private List<FloorContent> floorContents; public List<FloorContent> getFloorContents() { return floorContents; } public void setFloorContents(List<FloorContent> floorContents) { this.floorContents = floorContents; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getTemplateUrl() { return templateUrl; } public void setTemplateUrl(String templateUrl) { this.templateUrl = templateUrl; } public Integer getShowIndex() { return showIndex; } public void setShowIndex(Integer showIndex) { this.showIndex = showIndex; } public Boolean getDisable() { return isDisable; } public void setDisable(Boolean disable) { isDisable = disable; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Floor floor = (Floor) o; return id != null ? id.equals(floor.id) : floor.id == null; } @Override public int hashCode() { return id != null ? id.hashCode() : 0; } }
FloorContent類:
package cms.model; import cms.model.base.BaseDomain; import org.hibernate.annotations.GenericGenerator; import javax.persistence.*; import java.io.Serializable; /** * Created by Roney on 2016/10/10. * 樓層的內(nèi)容 */ @Entity @Table(indexes = {@Index(name = "idx_floor_content_user", columnList = "user_id")}) public class FloorContent extends BaseDomain implements Serializable { @Id @GenericGenerator(name = "PKUUID", strategy = "uuid2") @GeneratedValue(generator = "PKUUID") @Column(length = 36) protected String id; /** * 發(fā)布用戶ID */ @Column(length = 36, name = "user_id") private String userId; /** * 內(nèi)容名稱 */ private String name; /** * * 內(nèi)容圖片 */ @Column(length = 256) private String contentImageUrl; /** * 類型 * 1.超鏈接 * 2.圖片檢索 */ private Integer type; /** * 超鏈接url */ private String linkUrl; /** * 圖片檢索內(nèi)容 */ private String picSearchContent; /** * 排序 */ @Column(name = "show_index", nullable = false) private Integer showIndex; /** * 是否禁用 */ @Column(nullable = false) private Boolean isDisable = false; @ManyToOne @JoinColumn(name = "floor_id",foreignKey = @ForeignKey(name = "fk_floor_fc")) private Floor floor; public Floor getFloor() { return floor; } public void setFloor(Floor floor) { this.floor = floor; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getContentImageUrl() { return contentImageUrl; } public void setContentImageUrl(String contentImageUrl) { this.contentImageUrl = contentImageUrl; } public Integer getType() { return type; } public void setType(Integer type) { this.type = type; } public String getLinkUrl() { return linkUrl; } public void setLinkUrl(String linkUrl) { this.linkUrl = linkUrl; } public String getPicSearchContent() { return picSearchContent; } public void setPicSearchContent(String picSearchContent) { this.picSearchContent = picSearchContent; } public Integer getShowIndex() { return showIndex; } public void setShowIndex(Integer showIndex) { this.showIndex = showIndex; } public Boolean getDisable() { return isDisable; } public void setDisable(Boolean disable) { isDisable = disable; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; FloorContent that = (FloorContent) o; return id != null ? id.equals(that.id) : that.id == null; } @Override public int hashCode() { return id != null ? id.hashCode() : 0; } }
實(shí)體類已經(jīng)出來(lái)了,現(xiàn)在具體說(shuō)說(shuō)怎么利用JPA中findBy來(lái)實(shí)現(xiàn)關(guān)聯(lián)查詢:
package cms.model.repository; import cms.model.Floor; import cms.model.FloorContent; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; /** * Created by Roney on 2016/10/10. * Created by Roney on 2016/10/10. * 樓層內(nèi)容管理dao類 */ public interface FloorContentRepos extends JpaRepository<FloorContent,String>{ public Page<FloorContent> findByFloor_IdAndIsDeleteOrderByShowIndexAsc(String floorId,boolean b, Pageable pageable); }
從例子中就可以看出JPA關(guān)聯(lián)查詢主要在“_”這個(gè)符號(hào)的使用,下面來(lái)給大家具體的介紹一下這個(gè)符號(hào)到底代表什么含義。
首先f(wàn)indBy是必須寫(xiě)的,表示使用JPA規(guī)則進(jìn)行查詢。
如果查詢的是本張表中的內(nèi)容,例如查詢本張表中的name字段就可以這么寫(xiě):findByName()。
如果查詢的是樓層中的name字段就可以這么寫(xiě):findByFloor_Name()。
如果是既要查詢本張表中的name字段,也要查詢樓層中的name字段,就可以這么寫(xiě):findByFloor_NameAndName()。
從上面的案例就可以看出可以在findBy后面添加要關(guān)聯(lián)的實(shí)體類,然后在實(shí)體類后面寫(xiě)上“_”,"_"符號(hào)后面是添加關(guān)聯(lián)表的字段而不是本身表的字段,這點(diǎn)要記住。如何還想關(guān)聯(lián)更多的表可以在后面添加:And+表名字+“_”+表中要查詢的字段?;蛘咧皇窍腙P(guān)聯(lián)本身的查詢字段可以在后面添加:And+查詢的字段。
千萬(wàn)不要寫(xiě)錯(cuò)了,寫(xiě)錯(cuò)的話運(yùn)行都運(yùn)行不起來(lái)的。所以寫(xiě)的時(shí)候要多看看是否符合規(guī)則。
看完上述內(nèi)容,你們掌握SpringBoot項(xiàng)目中使用JPA如何實(shí)現(xiàn)表關(guān)聯(lián)查詢的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。