1
屬性我有類似如下的查詢從@MappedSuperclass
@MappedSuperclass public abstract class Foo {
@Column private String myId;
}
@Entity public class Bar extends Foo {
}
@Entity public class Baz extends Foo {
}
但我現在想查詢的Bar
和Baz
使用myId
所有實例,但我的查詢被拒絕:
組織.hibernate.hql.ast.QuerySyntaxException:Foo未映射[來自 Foo foo where foo.myId =:myId]