Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/379.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Hibernate无法使用Spring引导在已编译的jar中创建entityManagerFactory bean_Java_Hibernate_Jpa_Spring Boot_Intellij Idea - Fatal编程技术网

Java Hibernate无法使用Spring引导在已编译的jar中创建entityManagerFactory bean

Java Hibernate无法使用Spring引导在已编译的jar中创建entityManagerFactory bean,java,hibernate,jpa,spring-boot,intellij-idea,Java,Hibernate,Jpa,Spring Boot,Intellij Idea,我在这里遇到了一个非常奇怪的问题,我想这可能与这篇文章有关。然而,我无法将答案映射到我的确切案例 当我从IntelliJ IDE运行我的项目时,它工作正常,当我将其编译为jar(并在Docker Cloud上运行)时,我得到以下异常: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path

我在这里遇到了一个非常奇怪的问题,我想这可能与这篇文章有关。然而,我无法将答案映射到我的确切案例

当我从IntelliJ IDE运行我的项目时,它工作正常,当我将其编译为jar(并在Docker Cloud上运行)时,我得到以下异常:

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;
我认为有关的部分是:
org.hibernate.engine.spi.SessionFactoryImplementor.getProperties()Ljava/util/Properties

我尝试清理构建目录并再次构建,但错误仍然存在于jar文件中。在谷歌上搜索,我发现多篇帖子表明这是JPA的旧版本,与当前的hibernate版本不兼容

这是我当前的gradle生成文件: 组“com.energiedenst.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
但是,如果我对持久性感到满意,那么这里似乎没有不同的版本

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
你知道如何调试吗?我是不是完全走错了路


干杯,谢谢。

味道不错,。。。它在本地工作,因为hibernate jpa jar在我的类路径中的某个地方,当我从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
负责修复。在检查了
gradledependencies
之后,我发现我加载了一个
5.0.x
版本的entitymanager(whyever…),它与JPA2不兼容。添加显式依赖项会将正确的版本加载到jar中。

您是否遵循了?@rnavagamuwa我没有看到任何具体内容?这是一个关于如何在spring boot中使用gradle的非常通用的指南。找不到任何与管理/故障排除依赖项相关的内容。能否详细说明HibernateEverson变量值是什么?遇到此问题的人。在entityFactoryManager错误之后出现了一个问题(请确保查看整个堆栈)。我的问题已解决:/*需要避免这一行引起的问题:java.lang.ClassNotFoundException:org.apache.lucene.search.Filter on builded.jar*/实现组:'org.apache.lucene',名称:'lucene core',版本:luceneCoreVersion。(我的版本是5.5.5)。但是我的“修复”是在这个问题上的错误之后直接发现的。您(以后)的错误可能会有所不同。