我正在尝试进行如下的小样本更新:
@RestController
@RequestMapping("/customer")
public class CustomerController {
@Autowired
private EntityManager eManager;
@RequestMapping(value = "/updatepincode/pincode/{pincode}", method = RequestMethod.GET)
//@Transactional
public String updateAddress(@PathVariable("pincode") String pinCode) {
try {
eManager.getTransaction().begin();
Query query = eManager.createQuery("UPDATE Addresses SET pincode = :pincode WHERE addressid = :addressid");
int updateCount = query.setParameter("pincode", pinCode).setParameter("addressid", "714D9F99-E19E-4595-9C5A-3560C42B1389").executeUpdate();
eManager.getTransaction().commit();
if (updateCount > 0) {
System.out.println("Number of records updated = " + updateCount);
}
} catch (Exception ex) {
eManager.getTransaction().rollback();
LogService.error(this.getClass().getName(), ex);
return "Failed to update";
}
return "Record Updated";
}
}
我故意做了此更新,以查看当我尝试使用现有主键更新另一行时会引发的异常。正如预期的那样,它将原因javax.persistence.PersistenceException
扔给了com.microsoft.sqlserver.jdbc.SQLServerException
。但是在这个错误之后,我再也无法打开表了。我确定,这是因为事务没有回滚。但正如你所看到的,我的catch块中有eManager.getTransaction().rollback()
。只有在服务停止后我才能打开表。
为什么不回滚?
还尝试使用@Transactional
注释,但没有用。
注意:我使用SQLServer 2008.其他类型的查询工作正常。如果没有约束违规,更新也可以正常工作。
这是我们在JPA中回滚的方式还是有其他一些方法?
我这样做是因为在Hibernate中,我做了类似(catch
block);
if(transaction.wasCommited(){
transaction.rollback();
}
答案 0 :(得分:1)
我不知道你在哪里得到这段代码,但它不应该正确运行。考虑重写它,并可能使用JTA进行事务管理。
@Resource public UserTransaction utx;
@Resource public EntityManagerFactory factory;
public String updateAddress(@PathVariable("pincode") String pinCode) {
EntityManager em = factory.createEntityManager();
try {
Query query = em.createQuery("UPDATE Addresses SET pincode = :pincode WHERE addressid = :addressid");
int updateCount = query.setParameter("pincode", pinCode).setParameter("addressid", "714D9F99-E19E-4595-9C5A-3560C42B1389").executeUpdate();
utx.commit();
if (updateCount > 0) {
System.out.println("Number of records updated = " + updateCount);
}
catch (RuntimeException e) {
if (utx != null) utx.rollback();
LogService.error(this.getClass().getName(), ex);
return "Failed to update";
}
finally {
em.close();
}
return "Record Updated";
}