java-具有休眠状态的JUnit:此实例尚未在数据库中作为一行存在

前端之家收集整理的这篇文章主要介绍了java-具有休眠状态的JUnit:此实例尚未在数据库中作为一行存在 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用JUnit进行测试.

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:com/mt/sm/application-context.xml","classpath:com/mt/sm/security-context.xml"})
@TransactionConfiguration(transactionManager = "transactionManager",defaultRollback = true)
@Transactional
public class LocationPathServiceImplTest { /* Class code here */ }

测试方法的声明非常简单:

@Test
public void testRefresh() { /* Method body */}

我已经创建了一个在setup()中保存obj的文件,然后保存到数据库.
在@Test中,我从DAO运行refresh()(refresh()方法调用EntityManager .refresh()),但这会导致以下错误

org.hibernate.HibernateException: this instance does not yet exist as a row in the database
javax.persistence.PersistenceException: org.hibernate.HibernateException: this instance does not yet exist as a row in the database

我不知道如何解决它.有人遇到过吗?
所有建议将不胜感激.

我决不会将更改提交到数据库,也不会调用.flush().据我所知,它们在当前事务中.

最佳答案
如果没有更多代码,您需要刷新DAO,以使实例持久化.刷新仅是对象级别,而刷新则是在数据库级别执行实际事务(因此rollback = true,因此在测试后会回滚)
原文链接:https://www.f2er.com/spring/531766.html

猜你在找的Spring相关文章