我们有一个使用 Terracotta Ehcache 3.3 运行的 Grails (1.3.4) 应用程序。我们正在尝试将我们的 Terracotta 安装更新到最新的 3.5.1。我在 BuildConfig.groovy 中添加了这些行:
inherits("global") {
// uncomment to disable ehcache
// excludes 'ehcache'
runtime 'net.sf.ehcache:ehcache-core:2.4.2'
runtime 'net.sf.ehcache:ehcache-terracotta:2.4.2'
runtime "org.terracotta:terracotta-toolkit-1.2-runtime:3.1.0"
}
我能够构建 .war 文件,但是当我尝试部署它时,我得到:
SLF4J: The requested version 1.5.8 by your slf4j binding is not compatible with [1.6]
SLF4J: See http://www.slf4j.org/codes.html#version_mismatch for further details.
Jun 14, 2011 1:16:36 PM org.apache.catalina.core.StandardContext start
SEVERE: Error listenerStart
Jun 14, 2011 1:16:36 PM org.apache.catalina.core.StandardContext start
SEVERE: Context [/cooldeals-0.3.2] startup failed due to previous errors
我了解 Terracotta 3.5.1 和 Grails 使用不同版本的 SLF4J,并且存在一些冲突。从 BuildConfig 中究竟应该排除什么?
谢谢,
伊拉克利斯