我正在尝试将 jpa 中的两个类与 OneToOne 关系相关联。我有这个复合键的 A 类:
@Embeddable
public static class AId implements Serializable
{
private static final long serialVersionUID = -3668842379109008885L;
private long idA;
private String codType;
private Date startDate;
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((codType == null) ? 0 : codType.hashCode());
result = prime * result + (int) (idA ^ (idA >>> 32));
result = prime * result
+ ((startDate == null) ? 0 : startDate.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
AId other = (AId) obj;
if (codType == null) {
if (other.codType != null)
return false;
} else if (!codType.equals(other.codType))
return false;
if (idA != other.idA)
return false;
if (startDate == null) {
if (other.startDate != null)
return false;
} else if (!startDate.equals(other.startDate))
return false;
return true;
}
public long getIdA() {
return idA;
}
public void setIdA(Long idA) {
this.idA = idA;
}
public String getCodType() {
return codType;
}
public void setCodType(String codType) {
this.codType = codType;
}
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
}
@EmbeddedId
@AttributeOverrides({
@AttributeOverride(name="idA", column=@Column(name="ID_A")),
@AttributeOverride(name="codType", column=@Column(name="COD_TYPE")),
@AttributeOverride(name="startDate", column=@Column(name="START_DATE"))
})
private AId idAId;
和具有简单主键的 B 类
@Id
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="GEN_ID_STORE" )
@Column(name="ID")
private Long id;
@OneToOne(fetch=FetchType.EAGER)
private A a;
现在我的问题是,如何仅使用 idAId.idA 字段关联这两个类?因为我想在我的 B 表中只有 ID_A 列而不是其他列。我更好地解释自己,我的问题是我必须从表 A 中提取只有 codType = 'COD' 和 startDate = null 的那些记录,实际上其他两个键并不重要,因为它们是固定的。我能做些什么?
不允许使用桥接表:D
谢谢你的帮助。