web-dev-qa-db-ja.com

JPAで複合主キーを作成および処理する方法

同じデータエントリのバージョンが必要です。つまり、エントリを別のバージョン番号で複製したいのです。

id - Versionが主キーになります。

エンティティはどのように見えますか?別のバージョンで複製するにはどうすればよいですか?

id Version ColumnA

1   0      Some data
1   1      Some Other data
2   0      Data 2. Entry
2   1      Data
100
Kayser

2つのキーを含むEmbedded classを作成し、EmbeddedIdでそのクラスへの参照をEntityとして使用できます。

@EmbeddedId および @Embeddable アノテーションが必要です。

@Entity
public class YourEntity {
    @EmbeddedId
    private MyKey myKey;

    @Column(name = "ColumnA")
    private String columnA;

    /** Your getters and setters **/
}
@Embeddable
public class MyKey implements Serializable {

    @Column(name = "Id", nullable = false)
    private int id;

    @Column(name = "Version", nullable = false)
    private int version;

    /** getters and setters **/
}

このタスクを達成する別の方法は、@IdClass注釈を使用して、そのidIdClassを両方配置することです。これで、両方の属性で通常の@Id注釈を使用できます

@Entity
@IdClass(MyKey.class)
public class YourEntity {
   @Id
   private int id;
   @Id
   private int version;

}
public class MyKey implements Serializable {
   private int id;
   private int version;
}
209
Rohit Jain

@IdClassを使用している場合、MyKeyクラスはSerializableを実装する必要があります

8
Swapnil17

キークラス:

@Embeddable
@Access (AccessType.FIELD)
public class EntryKey implements Serializable {

    public EntryKey() {
    }

    public EntryKey(final Long id, final Long version) {
        this.id = id;
        this.version = version;
    }

    public Long getId() {
        return this.id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Long getVersion() {
        return this.version;
    }

    public void setVersion(Long version) {
        this.version = version;
    }

    public boolean equals(Object other) {
        if (this == other)
            return true;
        if (!(other instanceof EntryKey))
            return false;
        EntryKey castOther = (EntryKey) other;
        return id.equals(castOther.id) && version.equals(castOther.version);
    }

    public int hashCode() {
        final int prime = 31;
        int hash = 17;
        hash = hash * prime + this.id.hashCode();
        hash = hash * prime + this.version.hashCode();
        return hash;
    }

    @Column (name = "ID")
    private Long id;
    @Column (name = "VERSION")
    private Long operatorId;
}

エンティティクラス:

@Entity
@Table (name = "YOUR_TABLE_NAME")
public class Entry implements Serializable {

    @EmbeddedId
    public EntryKey getKey() {
        return this.key;
    }

    public void setKey(EntryKey id) {
        this.id = id;
    }

    ...

    private EntryKey key;
    ...
}

別のバージョンで複製するにはどうすればよいですか?

プロバイダーから取得したエンティティをデタッチし、エントリのキーを変更して、新しいエンティティとして永続化できます。

3
callfarc0de

MyKeyクラス(@Embeddable)には、@ ManyToOneのような関係はありません。

1
Ranuka