UPDATE/DELETE查询不能键入JPA
我正在使用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删除查询的一些解决方案时也遇到了困难。对于抛出这个错误的原因,任何正确的方向或解释都是非常感谢的。
解决方案
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
对象。这就是你所需要的。
相关文章