spring – 如何配置玻璃鱼以使用应用程序管理的实体管理器?

如何配置玻璃鱼以使用应用程序管理的实体管理器?我通过下面给出的配置得到以下错误.

我不希望glassfish管理事务,我只想在持久性单元中使用带有RESOURCE_LOCAL设置的Spring托管事务,而不是JTA

SEVERE: Exception while preparing the app : The persistence-context-ref-name [org.springframework.data.jpa.repository.support.JpaRepositoryfactorybean/entityManager] .... resolves to a persistence unit called [spring-jpa] which is of type RESOURCE_LOCAL. Only persistence units with transaction type JTA can be used as a container managed entity manager. Please verify your application.

我的配置:

MysqL/mydb

我的应用背景:

factorybean">
        sql" value="true" />
                MysqL" />
                MysqL5Dialect"/>
            
最佳答案
我发现this forum post,我引用:

In a Java EE environment,if this element [transaction-type] is not
specified,the default is JTA. In a Java SE environment,if this
element is not specified,a default of RESOURCE_LOCAL may be assumed.

所以,在你的配置中尝试:

相关文章

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配置...