如何解决在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误?
Posted
技术标签:
【中文标题】如何解决在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误?【英文标题】:how to solve Error creating bean with name 'entityManagerFactory' defined in class path resource? 【发布时间】:2019-08-05 03:32:36 【问题描述】:当我编译我的 spring Boot 项目时,我得到了以下错误。
org.springframework.beans.factory.BeanCreationException:在类路径资源 [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class] 中定义名称为“entityManagerFactory”的 bean 创建错误:调用 init 方法失败;嵌套异常是 org.hibernate.AnnotationException: No identifier specified for entity: com.FileUpload.Model.Authorities
我的属性如下所示
我的 pom.xml 文件如下所示
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.0.BUILD-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.FileUpload</groupId>
<artifactId>FileUpload</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>FileUpload</name>
<description>this is file upload project</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.5.jre7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</pluginRepository>
</pluginRepositories>
【问题讨论】:
【参考方案1】:每个实体都必须将@Id 字段映射到主键数据库列。 Authorities
不见了。
【讨论】:
我在 Authorities 中添加了@Id 现在显示下面的错误执行 DDL 时出错“创建表用户(用户名 varchar(255)不为空,传递 varchar(255),启用布尔值,主键(用户名)) " 我有两个名为 user 和 authority 的模型类,执行后知道我的应用程序权限表已创建但未创建用户表!! 为此打开新问题。此问题中的实际问题已得到解答。 我解决了这个问题,我应该改变用户表名,因为这个名字是在postgres中保留的!! 如果您认为我的回答有助于回答您的原始问号,请将其标记为已回答。以上是关于如何解决在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误?的主要内容,如果未能解决你的问题,请参考以下文章
在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误
如何解决在类路径中定义名称为“configurationPropertiesBeans”的 bean 创建错误?
启动程序时,在类路径资源中定义名称为 'entityManagerFactory' 的 bean 创建时出错
在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误:调用 init 方法失败