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

我遇到了使用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.

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

Exception I got: no transaction is in progress

3.

@Transactional
public 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.

@Transactional
public 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上下文的上一个版本:

factorybean" id="entityManagerFactory">
        

加了之后

有用:

factorybean" id="entityManagerFactory">
        
最佳答案
要在Spring上下文中启用@Transactional,您应该具有以下内容

适合您的Spring版本:

启用注释:

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

相关文章

Spring Cloud为Spring Boot应用程序提供Netflix OSS集成。 提供的功能模块包括服务发现(Eureka),断路...
Spring Cloud 学习笔记;maven配置;入门学习;基于Spring Boot 实现;服务端配置,客户端配置;
可以毫不夸张地说,这篇文章介绍的 Spring/SpringBoot 常用注解基本已经涵盖你工作中遇到的大部分常用的...
Spring中各种方式进行日期时间处理,有作用于单个实体的,也有作用于全局的,有作用于请求入参的,有作...
跨域资源共享(Cross-origin resource sharing)(CORS)是W3C的标准,大部分的浏览器都实现了这个标准...
Spring Boot使创建基于Spring的应用程序变得轻松,大部分的SpringBoot应用程序都只需要很少的Spring配置...