1
모든 열을 개별적으로 언급하지 않고 javax.persistence 라이브러리의 포함 된 엔티티에 대해 고유 제한 조건을 적용 할 수 있습니까?임베디드 엔터티에 대한 고유 한 제약 조건은 무엇입니까?
내가 무엇을 가지고 :
@Table(uniqueConstraints = { @UniqueConstraint(columnNames = { "someReference", "id1", "id2" }) })
public class A {
@Embedded
private B embedded;
private String someReference;
}
@Embeddable
public class B {
private long id1;
private long id2;
}
나는 (자세한 이하) 원하는 무엇 :
@Table(uniqueConstraints = { @UniqueConstraint(columnNames = {"someReference", "embedded" }) })