当尝试在 Grails 2.4.4 应用程序上添加 searchable:0.6.9 (或较小的)时,我收到 hibernate4 抛出的异常,但这仅在我将“ static searchable = true ”添加到我的域类时发生。
考虑到我的 BuildConfig.groovy 看起来像这样:
repositories {
inherits true // Whether to inherit repository definitions from plugins
grailsPlugins()
grailsHome()
mavenLocal()
grailsCentral()
mavenCentral()
mavenRepo "https://repo.grails.org/grails/core"
mavenRepo "https://oss.sonatype.org/content/repositories/releases/"
mavenRepo "http://repo.spring.io/milestone"
}
dependencies {
compile "org.compass-project:compass:2.2.1"
compile('org.apache.lucene:lucene-highlighter:4.10.2',
'org.apache.lucene:lucene-spellchecker:3.6.2')
test "org.grails:grails-datastore-test-support:1.0.2-grails-2.4"
compile "javax.validation:validation-api:1.1.0.Final"
runtime "org.hibernate:hibernate-validator:5.0.3.Final"
}
plugins {
// plugins for the build system only
build ":tomcat:7.0.55"
// plugins for the compile step
compile ":scaffolding:2.1.2"
compile ':cache:1.1.8'
compile ":asset-pipeline:1.9.9"
runtime ":hibernate4:4.3.6.1" // or ":hibernate:3.6.10.18"
runtime ":database-migration:1.4.0"
runtime ":jquery:1.11.1"
runtime ":searchable:0.6.9"
}
我得到这个例外:
错误 context.GrailsContextLoaderListener - 初始化应用程序时出错:org/hibernate/impl/SessionFactoryImpl 消息:org/hibernate/impl/SessionFactoryImpl Line | 方法->> 95 | org.compass.gps.device.hibernate.lifecycle.DefaultHibernateEntityLifecycleInjector 中的 injectLifecycle org.compass.gps.device.hibernate.HibernateGpsDevice 中的 147 doStart
请问有人知道如何使事情正常进行吗?