我正在使用 jpa 和 spring,并在下面的代码中出错;
@PersistenceContext protected EntityManager entityManager;
entityManager.createQuery("select c from Theatre c");
并采取这个错误。
java.lang.IllegalArgumentException: org.hibernate.hql.internal.ast.QuerySyntaxException: Theatre is
not mapped [select c from Theatre c]
为了解决我在下面使用的问题,但我需要任何其他解决方案,因为项目不应该知道类,我想做动态编程
<class>Theatre </class> in "PersistenceUnit"
我很感激任何想法
此致