Spring Boot 如何修复“错误创建bean与名称'entityManagerFactory'定义在类路径(...):UUID

vojdkbi0  于 2024-01-06  发布在  Spring
关注(0)|答案(1)|浏览(161)

我在运行Springboot应用程序时遇到此错误:

  1. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: UUID

字符串
我试图解决这个问题,但我只找到描述类似问题的页面,但用“调用init方法失败”而不是“UUID”。
出现“创建名为”entityManagerFactory“的Bean时出错”错误消息时,无法找到“UUID”,错误消息为:/
chatGPT告诉我:“您遇到的org.springframework.beans.factory.BeanCreationException中包含消息“创建名为”entityManagerFactory“的Bean时出错”,通常表示entityManagerFactory Bean的配置存在问题,该Bean负责管理Sping Boot 应用程序中的JPA(Java持久性API)实体管理器。
该错误消息包括对Hibernate JpaConfiguration.class的引用和术语“UUID”。这表明您正在使用的库的版本可能不匹配,尤其是与Hibernate相关的版本。
这很有道理,不过我已经仔细检查了maven仓库的所有兼容性,看起来我是最新的。下面是我的pom.xml:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.1.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.globomatics</groupId>
  12. <artifactId>bike</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>bike</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <spring.boot.version>3.1.3</spring.boot.version>
  19. </properties>
  20. <dependencies>
  21. <!-- Other dependencies -->
  22. <!-- Spring Boot Starter Web -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. <version>${spring.boot.version}</version>
  27. </dependency>
  28. <!-- Spring Boot Starter Data JPA -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-jpa</artifactId>
  32. <version>${spring.boot.version}</version>
  33. </dependency>
  34. <!-- SQLite Driver -->
  35. <dependency>
  36. <groupId>org.xerial</groupId>
  37. <artifactId>sqlite-jdbc</artifactId>
  38. <version>3.42.0.0</version>
  39. </dependency>
  40. <!-- Hibernate-->
  41. <dependency>
  42. <groupId>org.hibernate.orm</groupId>
  43. <artifactId>hibernate-core</artifactId>
  44. <version>6.2.7.Final</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>jakarta.persistence</groupId>
  48. <artifactId>jakarta.persistence-api</artifactId>
  49. <version>3.1.0</version>
  50. </dependency>
  51. <!-- Spring Boot Starter Test -->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <version>${spring.boot.version}</version>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-autoconfigure</artifactId>
  61. <version>${spring.boot.version}</version>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <!-- Spring Boot Maven Plugin -->
  67. <plugin>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-maven-plugin</artifactId>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>


此外,我无法理解“创建名为”entityManagerFactory“的bean时出错”,因为我使用的是spring数据jpa仓库,在这种情况下,我不必配置entityManagerFactory或数据源。
这里也是我的application.properties

  1. spring.jpa.database-platform=org.hibernate.dialect.SQLiteDialect
  2. spring.jpa.hibernate.ddl-auto=none
  3. spring.jpa.show-sql=true
  4. spring.datasource.url=jdbc:sqlite:bike.db
  5. spring.datasource.username=
  6. spring.datasource.password=
  7. spring.datasource.driver-class-name=org.sqlite.JDBC


另外,我的注解中也有一些信息应该是正确的:

  1. @SpringBootApplication
  2. @EntityScan("com.globomatics.bike.models")
  3. @EnableJpaRepositories("com.globomatics.bike.repositories")
  4. public class BikeApplication {
  5. public static void main(String[] args) {
  6. SpringApplication.run(BikeApplication.class, args);
  7. }
  8. }

x

  1. @RestController
  2. @RequestMapping("/api/v1/bikes")
  3. public class BikeController {
  4. private final BikeRepository bikeRepository;
  5. @Autowired
  6. public BikeController(BikeRepository bikeRepository) {
  7. this.bikeRepository = bikeRepository;
  8. }
  9. @GetMapping
  10. public List<Bike> list() {
  11. return bikeRepository.findAll();
  12. }
  13. @PostMapping
  14. @ResponseStatus(HttpStatus.OK)
  15. public void create(@RequestBody Bike bike){
  16. bikeRepository.save(bike);
  17. }
  18. @GetMapping("/{id}")
  19. public Bike get(@PathVariable("id") long id){
  20. return bikeRepository.getReferenceById(id);
  21. }
  22. }
  1. @Entity
  2. @JsonIgnoreProperties({"hibernateLazyInitializer", "handler"})
  3. public class Bike {
  4. @Id
  5. @GeneratedValue(strategy = GenerationType.AUTO)
  6. private Long id;
  7. private String name;
  8. private String email;
  9. private String phone;
  10. private String model;
  11. private String serialNumber;
  12. private BigDecimal purchasePrice;
  13. @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "MM-dd-yyyy")
  14. private Date purchaseDate;
  15. private boolean contact;
  16. // GETTERS AND SETTERS
  17. }

的一个字符串
最后,标准JPA存储库接口:

  1. public interface BikeRepository extends JpaRepository <Bike, Long> {
  2. }


这是来自下列类别:https://app.pluralsight.com/library/courses/building-first-app-with-spring-boot-angularjs/table-of-contents
在过去的几年里,内容更新得很差。考虑到一些主要的依赖迁移,我正在尝试实现自springboot 3. 0 ++以来的主要变化。
某些相关性兼容性可能是导致该问题的原因。
此外,错误“创建名为”entityManagerFactory“的bean时出错”对我来说也是一个严重的误导,如上所述。
因此,经过2天之间的搜索,文档,mvn干净安装,试验和错误,随机猜测之间的版本和chatgpt,我在这里下降了一个消息寻求帮助。
非常感谢.
查尔斯

qmelpv7a

qmelpv7a1#

我终于解决了这个问题。

1)Hibernate社区是关键

首先,重要的是要理解,自Hibernate 6+以来,sqlite方言已经从“hibernate core”移动到“hibernate community dialect”。这在我的一些研究中得到了支持:
https://www.baeldung.com/spring-boot-sqlite
https://discourse.hibernate.org/t/varargssqlfunction-was-deleted-hibernate-6-0s-development/6826
所以我必须明确地加上
1.我的pom.xml中的依赖项“hibernate-community^-dialect”
1.添加到application.properties:spring.jpa.properties.hibernate.dialect=org.hibernate.community.dialect.SQLiteDialect
在这一点上,不像以前,我的项目将建立成功。但我仍然会失败的开始。

2)Hibernate core在sping data jpa中,必须排除

其次,Spring Data JPA将Hibernate作为其默认的JPA提供程序。在我的例子中,“spring-data-jpa”包括“Hibernate core 6.2.7.FINAL”。当您运行应用程序时,默认情况下会使用此选项,并且springboot正在Hibernate core中查找sqlite方言,该方言不存在。
所以这里的技巧是在pom. xml中将hibernate核心的排除添加到spring数据jpa依赖项中。
总而言之,你会发现我的pom和我的application.properties。

  1. # Hibernate Configuration
  2. spring.jpa.hibernate.ddl-auto=none
  3. spring.jpa.show-sql=true
  4. spring.jpa.properties.hibernate.dialect=org.hibernate.community.dialect.SQLiteDialect
  5. # Datasource config for Sqlite
  6. spring.datasource.url=jdbc:sqlite:bike.db
  7. spring.datasource.username=
  8. spring.datasource.password=
  9. spring.datasource.driver-class-name=org.sqlite.JDBC

个字符

展开查看全部

相关问题