java–EntityManager不能使用persist将元素保存到数据库

java–EntityManager不能使用persist将元素保存到数据库,第1张

概述我遇到了使用EntityManager将元素持久化到数据库的问题.根据我发现的答案,我在DaoJpa中尝试了这4种方法来做这样的事情,但仍然失败了.在这里,我附上了我尝试的四种方式:控制器部分代码: @Transactional SmartProduct smartProduct = new SmartProduct();

我遇到了使用EntityManager将元素持久化到数据库的问题.根据我发现的答案,我在DaoJpa中尝试了这4种方法来做这样的事情,但仍然失败了.在这里,我附上了我尝试的四种方式:

控制器部分代码:

   @Transactional    SmartProduct smartProduct = new SmartProduct();            smartProduct.setname("Dove Soap");            smartProductDao.persist(smartProduct);

1.
    DaoJpa:

 @Transactional public voID persist(SmartProduct smartProduct) {            entityManager.persist(smartProduct);

不行!

2.

@Transactionalpublic voID persist(SmartProduct smartProduct) {entityManager.persist(smartProduct);entityManager.flush();

Exception I got: no transaction is in progress

3.

@Transactionalpublic voID persist(SmartProduct smartProduct) {EntityTransaction emTransaction = entityManager.getTransaction();        emTransaction.begin();          entityManager.persist(smartProduct);        emTransaction.commit();        entityManager.close();

Exception I got:
Not allowed to create transaction on shared EntityManager – use Spring
transactions or EJB CMT instead

4.

@Transactionalpublic voID persist(SmartProduct smartProduct) {                    EntityManagerFactory emf = Persistence.createEntityManagerFactory("persistenceUnit");                EntityManager em = emf.createEntityManager();                EntityTransaction etx = em.getTransaction();                etx.begin();                em.persist(smartProduct);                etx.commit();                em.close();                emf.close();

Exception I got:
The application must supply JDBC connections

有人可以帮我解决问题吗?提前谢谢了!

非常感谢JustinKSU的帮助.我在Spring上下文中添加了注释,然后它就解决了!
这是我的Spring上下文的上一个版本:

加了之后

有用:

最佳答案要在Spring上下文中启用@Transactional,您应该具有以下内容:

适合您的Spring版本:

启用注释:

声明您的事务管理器注入您的实体管理器:

总结

以上是内存溢出为你收集整理的java – EntityManager不能使用persist将元素保存到数据库全部内容,希望文章能够帮你解决java – EntityManager不能使用persist将元素保存到数据库所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)