找不到Spring Boot 2.1 EntityManagerFactory Bean

时间:2019-02-22 11:17:43

标签: java spring spring-boot spring-data-jpa

我有一个使用JPA,Web和PostgreSQL的简单Spring Boot项目。我正在使用最新的Spring Boot版本 2.1.3.RELEASE

添加简单的JpaRepository应用程序后,启动失败,并显示以下错误:

***************************
APPLICATION FAILED TO START
***************************

Description:

Field dataMappingRepository in com.my.example.service.impl.SimpleServiceImpl required a bean named 'entityManagerFactory' that could not be found.

The injection point has the following annotations:
    - @org.springframework.beans.factory.annotation.Autowired(required=true)


Action:

Consider defining a bean named 'entityManagerFactory' in your configuration.

我有一个简单的@Service类,例如:

public class SimpleServiceImpl implements SimpleService {
  @Autowired private SimpleJpaRepository repo;
}

和JpaRepository:

public interface SimpleJpaRepository extends JpaRepository<SimpleEntity, Long> {}

这是我的application.yml:

spring:
   datasource:
      url: jdbc:postgresql://localhost:5432/simple
      username: user
      password: pass
      driver-class-name: org.postgresql.Driver
   jpa:
      show-sql: false
      properties:
         hibernate:
            dialect: org.hibernate.dialect.PostgreSQLDialect
      hibernate:
         ddl-auto: validate

如果我将 spring-boot-starter-parent 更改为 2.0.8.RELEASE ,应用程序将正确启动。

2 个答案:

答案 0 :(得分:0)

好吧,所以最终问题出在Andy Wilkinson所说的缓存的Hibernate依赖关系上。

从我的M2存储库中删除 org.hibernate 文件夹并更新maven项目后,它可以正常工作。

答案 1 :(得分:0)

我正在使用最新的Spring Boot版本2.1.2.RELEASE。
但是错误地,在属性标签中,我忘记删除4.3.5版本,如下所示,这会导致加载的库之间混淆。
<properties><hibernate.version>4.3.5.Final</hibernate.version></properties>
在org.hibernate文件夹的.m2存储库中,我下载了两个版本库。 删除org.hibernate文件夹并更新Maven项目。它将运行。