gpt4 book ai didi

java - 创建 bean 时出错 "entityManagerFactory"

转载 作者:行者123 更新时间:2023-11-30 02:24:31 26 4
gpt4 key购买 nike

我有一个使用 JavaFX 的 Spring Boot 项目。当我在 idea 中运行这个项目时,一切正常,但是在我使用 Maven 打包项目后,在尝试运行 jar 文件时出现此异常

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory'
Invocation of init method failed;nested exception is java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException

pom.xml是这个

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

最佳答案

尝试将这些依赖项添加到您的 POM 中:

<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>

<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</dependency>

也许您需要添加软件包的版本。

关于java - 创建 bean 时出错 "entityManagerFactory",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45978740/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com