私のアプリには、次の2つのエンティティがあります。
@Entity
@Inheritance(strategy=InheritanceType.JOINED)
public class Commentable implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
protected Long id;
protected long createdDate;
...
}
@Entity
public class Announcement extends Commentable implements Serializable {
private int type;
private String title;
@Column(columnDefinition = "MEDIUMTEXT")
private String content;
...
}
アナウンステーブルからいくつかの行を取得しようとすると、次の行で構文エラーが発生し続けます。
Query q = em.createQuery("SELECT A FROM Announcement A JOIN Commentable C ON A.id = C.id WHERE A.type=:type ORDER BY C.createdDate DESC");
これはスタックトレースです:
Caused by: Exception [EclipseLink-8023] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.JPQLException
Exception Description: Syntax error parsing the query [SELECT A FROM Announcement A JOIN Commentable C ON A.id = C.id WHERE A.type=:type ORDER BY C.createdDate DESC].
Internal Exception: org.eclipse.persistence.internal.libraries.antlr.runtime.EarlyExitException
ここで私が間違ったことを教えていただければ幸いです。
よろしく、ジェームス・トラン