Grails似乎有错误的hibernate依赖

时间:2014-06-05 07:46:08

标签: hibernate grails dependency-management

我正在将我的Grails项目从2.3.5升级到grails 2.4.0。 由于我在生产中有多个应用程序实例,因此我在git分支中进行此升级。 因为我必须解决我的应用程序的2.3.5版本上的问题,我有时必须切换回该版本。 突然,1.3.5版本不再运行了:

    BeanCreationException: Error creating bean with name 'transactionManager': Cannot resolve reference to bean 'sessionFactory' while setting bean property 'sessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory': Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: org/hibernate/cache/spi/RegionFactory

当我搜索这个错误时,我发现这个部分属于Hibernate 4.3.5.2依赖项,它不在2.3.5版本的BuildConfig.groovy中(但它在2.4.0版本中)。 当我运行grails dependency-report时,它会显示:

    +--- org.grails.plugins:hibernate4:4.3.5.2
|    \--- org.hibernate:hibernate-ehcache:4.3.5.Final
|         \--- org.jboss.logging:jboss-logging-annotations:1.2.0.Beta1
|    \--- org.hibernate:hibernate-validator:5.0.3.Final
|         \--- com.fasterxml:classmate:1.0.0
|    \--- net.sf.ehcache:ehcache-core:2.4.8
|    \--- org.jboss.logging:jboss-logging:3.1.0.GA 
|    \--- org.grails:grails-datastore-gorm-hibernate4:3.1.0.RELEASE
|         \--- org.hibernate.common:hibernate-commons-annotations:4.0.4.Final
|    \--- javax.validation:validation-api:1.1.0.Final

虽然我的BuildConfig看起来像这样:

grails.servlet.version = "3.0" // Change depending on target container compliance (2.5 or 3.0)
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
grails.project.work.dir = "target/work"
grails.project.target.level = 1.6
grails.project.source.level = 1.6
grails.project.war.file = "target/${grails.util.Environment.current.name}-${appVersion}.war"
grails.project.dependency.resolver = "maven"

grails.tomcat.nio=true

grails.project.dependency.resolution = {
// inherit Grails' default dependencies
inherits("global") {
    // uncomment to disable ehcache
    // excludes 'ehcache'
}
log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
repositories {
    inherits true // Whether to inherit repository definitions from plugins
    grailsHome()
        mavenLocal()

    grailsPlugins()
    grailsCentral()

    // uncomment the below to enable remote dependency resolution
    // from public Maven repositories
    mavenCentral()
    //mavenRepo "http://snapshots.repository.codehaus.org"
    mavenRepo "http://repository.codehaus.org"
        mavenRepo "https://oss.sonatype.org/content/repositories/snapshots/"

    //for export plugin 1.6
    mavenRepo "http://repo.grails.org/grails/core"
}
dependencies {
    // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
    //       runtime 'mysql:mysql-connector-java:5.1.16'

    runtime 'mysql:mysql-connector-java:5.1.21'
    runtime 'com.github.groovy-wslite:groovy-wslite:0.7.1'

    test 'junit:junit:4.11'
    test 'org.hamcrest:hamcrest-all:1.3'
//      runtime "org.jggug.kobo:kobo-commons:0.2"

    //for export plugin 1.6
    compile 'commons-beanutils:commons-beanutils:1.8.3'
}
plugins {
    build ":tomcat:7.0.47"

    // plugins for the compile step
            compile ":scaffolding:2.0.1"
    compile ':cache:1.1.1'
    compile ':mail:1.0.1', {
        excludes 'spring-test'
      }
        compile ":quartz2:2.1.6.2"
        compile ":csv:0.3.1"
        compile ":export:1.6"
//      compile ":jasper:1.2.1"
        compile ":jasper:1.6.1"
        compile ":spring-security-core:1.2.7.3"

        // plugins needed at runtime but not for compilation
    runtime ":hibernate:3.6.10.6" // or ":hibernate4:4.1.11.1"
    runtime ":database-migration:1.3.8"
    runtime ":jquery:1.10.2"
    compile ":jquery-ui:1.10.3"
            runtime ":resources:1.2.1"      
        compile ":events-push:1.0.M7"
//      compile ":ajax-uploader:1.1"

        // Uncomment these (or add new ones) to enable additional resources capabilities
        //runtime ":zipped-resources:1.0"
        //runtime ":cached-resources:1.0"
        //runtime ":yui-minify-resources:0.1.4"

        compile ':cache:1.0.0'
    }
}

正如你所看到的,没有hibernate4:4.3.5.2那里。 我试图删除我的.m2目录,我的.grails目录来刷新依赖项,但它没有用。

但是,在我的笔记本电脑上我还没有使用过grails 2.4.0分支,那里一切正常!该依赖关系图仅显示预期的hibernate 3.6.10.6依赖关系。

有没有人知道这是怎么回事?

2 个答案:

答案 0 :(得分:1)

如果要在同一工作区中的git分支之间来回切换,请删除target目录并使用与最近切换到的分支对应的Grails版本重建代码。我不能仅仅根据这里提供的信息确定,但取决于可能解决您问题的其他一些因素。

答案 1 :(得分:0)

感谢Jeff的回答,但这不是解决方案(我们在运行之前总是clean)。

事实证明问题出在我们自己创建的插件中(未在上面的BuildConfig.groovy中显示)。我们还将这些升级为grails 2.4.0。这就添加了Hibernate4 4.3.5.2。 所以当我切换回我的应用程序的2.3.5版本时,我还需要切换回grails 2.3.5版本的插件,当然!