jpaTemplate如何自动提交...?
我正在使用 JPA 我使用 @Transactional 在服务层上设置了事务..
它工作正常..
但是当我使用 JpaTemplate 测试 Dao (Junit) 事务时没有提交..尽管使用 JdbcTemplate 进行相同的测试正在提交...
那么如何为 JpaTemplate 启用自动提交...?
I am using JPA
i have setup transaction on service layer using @Transactional..
it is working fine..
but when i test Dao (Junit) transactions using JpaTemplate are not getting commited.. although same test with JdbcTemplate were getting comitted...
So how to enable auto-commit for JpaTemplate...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您直接调用 DAO...
不要尝试配置自动提交,不建议这样做。相反,设置您的测试上下文,例如 此处描述。
I am assuming you are calling you DAO's directly...
Do not attempt to configure auto-commit, it is not recommended. Instead, setup your test context like described here.