Entity クラスに共通のプロパティがあります。ID - エンティティのタプルが DBに追加されたときを示すシーケンスlong
番号
Date
createdDateと、タプルの最後の変更がいつ行われたかを示すDate
lastModifiedDateプロパティが必要です。
JPA 2.1を使用しています。,Hibernate 4.3.6.Final
<depedencies>
<!-- Hibernate -->
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
<version>1.0.0.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>5.1.1.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>4.3.6.Final</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.34</version>
</dependency>
</dependencies>
そこで、主要なプロパティを持つ共通クラスを作成しました。
@Embeddable
public class AbstractArticle implements Serializable {
private static final long serialVersionUID = 895868474989692116L;
@Nonnull
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(nullable = false)
private long id;
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "createdDate", nullable = false)
private Date createdDate;
@Temporal(TemporalType.TIMESTAMP)
@Column(name = "lastModifiedDate", nullable = false)
private Date lastModifiedDate;
public AbstractArticle() {
}
... //getters and setters
}
この共通のキー値を使用する別のクラス
@Entity
public class BBCNews{
@Nonnull
@Column(name = "newsId", nullable = false)
private long newsId;
@Nonnull
@Column(name = "title", nullable = false)
private String title;
@CheckForNull
@Column(name = "description", nullable = true)
private String description;
@Id
private AbstractArticle abstractArticle;
public BBCNews() {
}
...//getters and setters
OK、すべて問題ありませんでしたが、長い IDの AbstractArticle は同じ 0 でした。DB 内のすべてのタプルは ID として 0 でした。これの目的は何ですか。何か案は?