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

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

概述我正在使用JUnit进行测试.@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = {'classpath:com/mt/sm/application-context.xml', 'classpath:com/mt/sm/security-context.xml'}

我正在使用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)@Transactionalpublic class LocationPathServiceImpltest { /* Class code here */ }

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

@Testpublic 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 databasejavax.persistence.PersistenceException: org.hibernate.HibernateException: this instance does not yet exist as a row in the database

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

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

最佳答案如果没有更多代码,您需要刷新DAO,以使实例持久化.刷新仅是对象级别,而刷新则是在数据库级别执行实际事务(因此rollback = true,因此在测试后会回滚) 总结

以上是内存溢出为你收集整理的java-具有休眠状态的JUnit:此实例尚未在数据库中作为一行存在 全部内容,希望文章能够帮你解决java-具有休眠状态的JUnit:此实例尚未在数据库中作为一行存在 所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1237038.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存