2017-08-24 130 views
1

我在这里遇到了一个非常奇怪的问题,我认为它可能与此SO帖子有关:Spring Boot exported jar not working (org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory')。但是我无法将答案映射到我的确切情况。Hibernate无法在Spring Boot的编译jar中创建entityManagerFactory bean

当我逃离的IntelliJ IDE我的项目,它工作正常,当我编译它作为一个罐子(和泊坞云上运行的话)我得到以下异常:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaAutoConfiguration.class]: Invocation of init method failed; nested exception is java.lang.NoSuchMethodError: org.hibernate.engine.spi.SessionFactoryImplementor.getProperties()Ljava/util/Properties; 

相关部分IST这个我认为: org.hibernate.engine.spi.SessionFactoryImplementor.getProperties()Ljava/util/Properties;

我试着清理build目录并重新编译,但错误仍然存​​在于jar文件中。谷歌搜索我发现多个帖子提示它是JPA的旧版本不与当前的休眠版本一起工作。

这是我目前gradle这个构建文件: 集团com.energiedienst.smartcity.middleware' 版本“0.1”

apply plugin: 'java' 
    apply plugin: "idea" 
    apply plugin: 'com.bmuschko.docker-java-application' 
    apply plugin: 'com.bmuschko.docker-remote-api' 
    apply plugin: 'org.springframework.boot' 

    import com.bmuschko.gradle.docker.tasks.image.* 

    repositories { 
     mavenCentral() 
    } 

    ext { 
     springCloudVersion = '1.2.1.RELEASE' 
     jettyVersion = '9.4.2.v20170220' 
     jacksonVersion = '2.8.8' 
     springSecurityVersion = '4.2.3.RELEASE' 
     springBootVersion = '1.5.6.RELEASE' 

     dockerBaseImage = getProperty('docker.baseImage') 
     dockerRegistryUrl = getProperty('docker.registry.url') 
     dockerRegistryName = getProperty('docker.registry.name') 
     dockerRegistryUsername = getProperty('docker.registry.username') 
     dockerRegistryPassword = getProperty('docker.registry.password') 
    } 

    configurations { 
     runtimeOnly 
     all { 
      exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat' 
      exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' 
     } 
    } 

    buildscript { 
     repositories { 
      jcenter() 
      mavenCentral() 
     } 
     dependencies { 
      classpath 'com.bmuschko:gradle-docker-plugin:3.0.11' 
      classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.6.RELEASE' 
     } 
    } 

    dependencies { 
     compile("org.springframework.boot:spring-boot-starter-aop:${springBootVersion}") 
     compile("org.springframework.boot:spring-boot-starter-security:${springBootVersion}") 
     compile("org.springframework.boot:spring-boot-starter-thymeleaf:${springBootVersion}") 
     compile("org.springframework.boot:spring-boot-starter-web:${springBootVersion}") 
     compile("org.springframework.boot:spring-boot-starter-data-jpa:${springBootVersion}") 
     compile("org.springframework.boot:spring-boot-starter-log4j2:${springBootVersion}") 
     compile("org.springframework.boot:spring-boot-starter-jetty:${springBootVersion}") 

     compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: jacksonVersion 
     compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jacksonVersion 
     compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: jacksonVersion 
     compile 'com.bedatadriven:jackson-datatype-jts:2.2' 
     compile 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:2.9.0' 

     compile group: 'org.springframework.security.oauth', name: 'spring-security-oauth2', version: '2.0.12.RELEASE' 

     compile group: 'com.github.paulcwarren', name: 'spring-content-s3-boot-starter', version: '0.0.5' 
     compile group: 'mysql', name: 'mysql-connector-java', version: '6.0.6' 
     compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final' 
     compile group: 'org.hibernate', name: 'hibernate-spatial', version: '5.2.10.Final' 

     compile group: 'commons-io', name: 'commons-io', version: '2.5' 

     compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5' 

     compile group: 'org.reflections', name: 'reflections', version: '0.9.10' 

     compile group: 'org.projectlombok', name: 'lombok', version: '1.16.16' 

     testCompile("org.springframework.boot:spring-boot-starter-test") 
     testCompile("org.springframework.security:spring-security-test") 
    } 
    //..... docker build stuff from here 

如果我用grep进行持久但它似乎并不像有不同在那里的版本

Azalea :: » gradle dependencies|grep persistence   1 ↵ 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 
| | +--- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final 

任何想法如何调试这,我完全在错误的路径吗?

干杯和thx。

+0

您是否遵循[https://docs.spring.io/spring-boot/docs/current/reference/html/build-tool-plugins-gradle-plugin.html](https://docs.spring。 IO /弹簧启动/文档/电流/参考/ HTML /编译工具 - 插件 - gradle这个-plugin.html)? – rnavagamuwa

+0

@rnavagamuwa任何具体的我看不到?这是关于如何在弹簧启动中使用gradle的非常通用的指南。找不到与管理/故障排除依赖有关的任何内容。 – Tom

回答

0

气味是正确的,...它在本地工作,因为从某处hibernate-jpa jar在我的classpath中,并从IntelliJ开始它时得到解决。我有感觉IntelliJ使用数据库插件的hibernate。

添加

compile group: 'org.hibernate', name: 'hibernate-entitymanager', version: hibernateVersion 
compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version: '1.0.0.Final' 

解决了这一问题。我认为hibernate-entitymanager负责修复。在检查gradle dependencies后,我看到我有一个5.0.x版本的entitymanager加载(whyever ...),它与JPA2不兼容。添加显式依赖项将正确的版本加载到jar中。

相关问题