来自JPA查询的重复数据(sql约束)

时间:2018-05-04 13:05:43

标签: sql hibernate spring-boot jpa spring-data-jpa

出于某种原因,我在我的存储库中使用此查询返回了9行重复数据。

 @Query("select distinct profile from OfficeProfile profile where profile.fcoDesignCd in 
(select officeLocation.asccode from OfficeLocation officeLocation, OfficeProfile profile 
where officeLocation.statecode = :stateCode and officeLocation.asccode = profile.fcoDesignCd)")     
    public List<OfficeProfile> searchStateASC(@Param("stateCode") String stateCode);

下面是返回9个不同数据行的sql查询。查询似乎完全相同。

select
op.FCO_DESIGN_CD,
op.office_addr_line1,
op.office_addr_line2,
op.office_addr_state,
op.office_addr_zip
from cridba.office_profile op
where op.fco_design_cd in  (
select asc_code from cridba.cris_lk_location cll , cridba.office_profile op
where cll.state_code='VA'
and cll.asc_code = op.fco_design_cd);

这就是我在迭代这些值的方式。我设置了我的调试器并注意到与id相同的9个值。

for(OfficeProfile locationInfo: officeLocatorRepository.searchStateASC(stateCode))

以下是我的实体关系 办公室档案(父母)

@OneToMany(cascade = CascadeType.ALL,
        fetch = FetchType.LAZY,
        mappedBy = "profile")
private Set<OfficeLocation> officeLocation = new HashSet<>(0);

办公地点(儿童)

@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "asc_code", referencedColumnName = "fco_design_cd", nullable = false, insertable=false, 
updatable=false)
public OfficeProfile profile;

我在两个类中都覆盖了equals和hashcode。由于我使用asc_code加入这些表,我是否覆盖了那个或id?或两者?这是我到目前为止所拥有的。

@Override
public boolean equals(Object o) {
    if (this == o) {
        return true;
    }
    if (o == null || getClass() != o.getClass()) {
        return false;
    }
    OfficeProfile officeProfile = (OfficeProfile) o;
    if (officeProfile.getId() == null || getId() == null) {
        return false;
    }
    return Objects.equals(getId(), officeProfile.getId());
}

@Override
public int hashCode() {
    return Objects.hashCode(getId());
}

我应该将@Id添加到fcoDesignCd,即使这个表已经有了id吗? fcoDesignCd是join中的引用列吗?

@Column(name = "fco_design_cd")
private String fcoDesignCd;

HQL输出......

select distinct officeprof0_.office_type_id as office_type_id1_1_, ......
from cridba.office_profile officeprof0_ where officeprof0_.fco_design_cd in 
(select officeloca1_.asc_code 
from cridba.cris_lk_location officeloca1_, cridba.office_profile 
officeprof2_ where officeloca1_.state_code=? and 
officeloca1_.asc_code=officeprof2_.fco_design_cd)

这看起来像是正确的路径吗? JPA How add unique contraint on column for @OneToMany relation like on username

1 个答案:

答案 0 :(得分:0)

您不应该为您的表添加另一个@Id列,因为您已经有了一个。确保在数据库中使用唯一约束进行备份。
hashCode和equals的覆盖也看起来不错。
重复的问题可能在查询中。