为了账号安全,请及时绑定邮箱和手机立即绑定

Spring + Hibernate + JPA 在 JUnitTest 时, 不发出insert

Spring + Hibernate + JPA 在 JUnitTest 时, 不发出insert

慕斯709654 2019-03-12 13:10:25
单元的测试方法为:@Test@Transactional(propagation=Propagation.REQUIRED)@Rollbackpublic void test() {    userCreateService.saveUsers(2392L, "@abc.com", true, "A", new Long[]{129L, 1L, 2L, 131L, 4L}, 5);}设置了事务, 进入了方法里面, 调用javax.persistence.EntityManager.persist()方法都是不提交insert语句.发个例子说明一下:我想要插入一个user到数据库, 然后立刻把他的OPENID字段使用Oracle的sys_guid()函数来生成, 所以persist后, 调用本地查询语句来修改.发现修改语句一直说修改了0个结果, 我查了一下Hibernate的SQL语句输出, 发现没有发出过insert语句. 这是为何呢?请各位大神帮忙.............
查看完整描述

2 回答

?
30秒到达战场

TA贡献1828条经验 获得超6个赞

我找到答案了,JPA的persist是调用Hibernate Session的persist方法进行持久化,persist会在事务提交或者有必要刷新缓存时才提交insert语句。

然而JPA的createNativeQuery就是直接调用本地数据库SQL语句,这个操作在Hibernate中是不算进事务中的。

所以persist的对象未被提交,后面执行的createNativeQuery方法,将不会看到前面要持久化的对象。


查看完整回答
反对 回复 2019-04-17
?
ibeautiful

TA贡献1993条经验 获得超5个赞

参考:

The TestContext framework addresses this issue. By default, the framework will create and roll back a transaction for each test. You simply write code that can assume the existence of a transaction. If you call transactionally proxied objects in your tests, they will behave correctly, according to their transactional semantics. In addition, if test methods delete the contents of selected tables while running within a transaction, the transaction will roll back by default, and the database will return to its state prior to execution of the test. Transactional support is provided to your test class via a PlatformTransactionManager bean defined in the test's application context.

If you want a transaction to commit - unusual, but occasionally useful when you want a particular test to populate or modify the database - the TestContext framework can be instructed to cause the transaction to commit instead of roll back via the @TransactionConfiguration and @Rollback annotations.


查看完整回答
反对 回复 2019-04-17
  • 2 回答
  • 0 关注
  • 610 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信