我使用Java Persistence API成功创建,合并,提取了记录,但我无法删除记录。我使用了em.createNativeQuery(“删除...”),它运行正常,问题是我想使用实体管理器来做到这一点。我认为问题可能在于oracle数据库,因为我在Derby上尝试了上面的代码并且运行正常。
public void destroy(String id) throws NonexistentEntityException, RollbackFailureException, Exception {
EntityManager em = null;
Context initCtx = new InitialContext();
utx = (UserTransaction) initCtx.lookup("java:comp/env/UserTransaction");
try {
utx.begin();
em = getEntityManager();
//Query query = em.createNativeQuery("DELETE FROM SERVICIO WHERE SERVICIODESCRIPCION = '"+id+"'");
//query.executeUpdate();
Servicio servicio;
try {
servicio = em.getReference(Servicio.class, id);
servicio.getServiciodescripcion();
} catch (EntityNotFoundException enfe) {
throw new NonexistentEntityException("The servicio with id " + id + " no longer exists.", enfe);
}
em.remove(servicio);
utx.commit();
} catch (Exception ex) {
try {
utx.rollback();
} catch (Exception re) {
throw new RollbackFailureException("An error occurred attempting to roll back the transaction.", re);
}
throw ex;
} finally {
if (em != null) {
em.flush();
em.close();
}
}
}
答案 0 :(得分:0)
实际上问题是我的主键的数据类型设置为char(10),并且我解决了将其更改为VARCHAR(10),因此在使用Oracle数据库时,JPA并且是主要的键设置为text,应使用的数据类型是VARCHAR而不是CHAR,因此实体管理器可以正常工作。 THX。