我正在使用Spring框架来开展培训项目。我也在使用JPA并且一直都很糟糕。在我的DAO实现课程中,我写道:
@Override
public void deleteEntries(Module mod) {
System.out.println(mod.getDescription());
entityManager.createQuery("delete from TrainingEntry e where e.module = :mod and e.completedDate IS NULL",
TrainingEntry.class).setParameter("mod", mod);
}
正如您所看到的,它只是一个简单的DELETE语句,但我得到错误:
"Update/delete queries cannot be typed."
我的猜测是,我需要使用一些EntityManager
类方法来完成这项工作,但我不确定,因为在线这个错误几乎没有。我也很难应用我在网上找到的有关JPA删除查询的一些解决方案。任何关于正确方向的点或解释为什么抛出这个错误都非常感激。
答案 0 :(得分:9)
EntityManager
方法的声明如下:
Query createQuery(java.lang.String qlString)
<T> TypedQuery<T> createQuery(java.lang.String qlString, java.lang.Class<T> resultClass)
// The other three method is not relevant here
由此可以清楚地看到,由于第二个参数,您获得TypedQuery<T>
。如果删除它,您将获得一个简单的Query
对象。这就是你所需要的。
答案 1 :(得分:5)
在调用createQuery()时尝试删除TrainingEntry.class
参数,因为这是使其成为&#34; typed&#34;查询。
答案 2 :(得分:1)
entityManager.createQuery("delete from TrainingEntry e where e.module = :mod and e.completedDate IS NULL").setParameter("mod", mod);