使用Grails 2.5的开箱即用安装和干净的默认配置,添加第二个数据源时,在尝试启动应用程序时始终会出现此异常。这对grails 2.3.x来说没有问题。
DataSource.groovy
:
environments {
development {
dataSource {
dbCreate = "update"
url = "jdbc:mysql://127.0.0.1:3306/myapp"
username = "myuser"
password = "mypass"
}
dataSource_report {
url = "jdbc:mysql://127.0.0.1:3306/myapp_reporting"
username = "someuser"
password = "somepass"
}
}
两个数据库都存在,如果只定义了一个数据源,则可以连接。
在BuildConfig.groovy
中,默认情况下是我所假设的所有内容,包括:
plugins {
build ":tomcat:7.0.55"
compile ":scaffolding:2.1.2"
compile ':cache:1.1.8'
compile ":asset-pipeline:2.1.1"
compile ":spring-security-core:2.0-RC4"
compile ":quartz:1.0.2"
runtime ":hibernate4:4.3.8.1" // or ":hibernate:3.6.10.18"
runtime ":database-migration:1.4.0"
runtime ":cors:1.1.6"
}
有很多帖子都有这个错误,但似乎是因为作者试图使用非标准版本或缓存。
还尝试将此添加到Config.groovy,根据这篇文章:https://github.com/grails/grails-core/releases/tag/v2.5.0
beans {
cacheManager {
shared = true
}
}
不幸的是,这并没有帮助。
注意,我们使用默认的开箱即用配置缓存
hibernate {
cache.use_second_level_cache = true
cache.use_query_cache = false
cache.region.factory_class = 'org.hibernate.cache.ehcache.EhCacheRegionFactory' // Hibernate 4
singleSession = true // configure OSIV singleSession mode
flush.mode = 'manual' // OSIV session flush mode outside of transactional context
}
====更新====
替换此行(在DataSource.groovy
部分下的hibernate
中):
cache.region.factory_class = 'org.hibernate.cache.ehcache.EhCacheRegionFactory'
有了这个:
cache.region.factory_class = 'org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory'
似乎已经解决了这个问题,但现在的问题是,这有什么缺点吗?#34;修复"?
答案 0 :(得分:3)
只是为了跟踪(就像OP已经在问题中回答的那样):
将cache.region.factory_class
中的DataSource.groovy
更改为:
hibernate {
cache.region.factory_class = "org.hibernate.cache.SingletonEhCacheRegionFactory"
}
对于收到错误的人:net.sf.ehcache.CacheException: Another unnamed CacheManager already exists in the same VM.
,请将以下内容添加到Config.groovy
beans {
cacheManager {
shared = true
}
}