QuerySyntaxException: [Entity] is not mapped
Hibernateがログに記録しているのに、なぜ取得するのだろうか
INFO Hibernate EntityManager 3.5.0-Final
...
INFO Binding entity from annotated class: products.model.ProductGroup
INFO Bind entity products.model.ProductGroup on table GRP
...
INFO table found: GRP
INFO columns: [grp, name, top]
エンティティクラスは次のようになります
@Entity(name="GRP")
public class ProductGroup implements IdentifiableEntity {
@Id
private String grp;
private String name;
private String top;
...
}
次の行でエラーがスローされます。
Query q = em.createQuery("select g from ProductGroup g");
これはすべてJPAであり、HibernateAPIはありません。