exception when initialising cache causes “grails run-app” to fail
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
In my Grails 2.5.4 app I have the following plugins installed
compile ":cache:1.1.8"
runtime ":cache-ehcache:1.0.5"
When I run grails run-app
, I get the following error at startup
java.lang.NullPointerException
at grails.plugin.cache.ehcache.GrailsEhCacheManagerFactoryBean$ReloadableCacheManager.rebuild(GrailsEhCacheManagerFactoryBean.java:171)
at grails.plugin.cache.ehcache.EhcacheConfigLoader.reload(EhcacheConfigLoader.groovy:63)
at grails.plugin.cache.ConfigLoader.reload(ConfigLoader.groovy:42)
at CacheGrailsPlugin.reloadCaches(CacheGrailsPlugin.groovy:202)
at CacheGrailsPlugin$_closure3.doCall(CacheGrailsPlugin.groovy:158)
If I build the WAR and look in the lib
directory, it contains both of the following dependencies:
- ehcache-2.9.0.jar
- ehcache-core-2.4.8.jar
Based on the advice in this issue, I excluded the transitive ehcache-core
dependency in BuildConfig
runtime (":hibernate:3.6.10.18") {
excludes "ehcache-core"
}
If I rebuild the WAR, the ehcache-core
JAR is excluded, but I still get the same error at startup when I run grails run-app
. I suspect the cause of the issue is the ehcache dependencies, but I can't figure out which JAR I should be using.
grails ehcache
add a comment |
In my Grails 2.5.4 app I have the following plugins installed
compile ":cache:1.1.8"
runtime ":cache-ehcache:1.0.5"
When I run grails run-app
, I get the following error at startup
java.lang.NullPointerException
at grails.plugin.cache.ehcache.GrailsEhCacheManagerFactoryBean$ReloadableCacheManager.rebuild(GrailsEhCacheManagerFactoryBean.java:171)
at grails.plugin.cache.ehcache.EhcacheConfigLoader.reload(EhcacheConfigLoader.groovy:63)
at grails.plugin.cache.ConfigLoader.reload(ConfigLoader.groovy:42)
at CacheGrailsPlugin.reloadCaches(CacheGrailsPlugin.groovy:202)
at CacheGrailsPlugin$_closure3.doCall(CacheGrailsPlugin.groovy:158)
If I build the WAR and look in the lib
directory, it contains both of the following dependencies:
- ehcache-2.9.0.jar
- ehcache-core-2.4.8.jar
Based on the advice in this issue, I excluded the transitive ehcache-core
dependency in BuildConfig
runtime (":hibernate:3.6.10.18") {
excludes "ehcache-core"
}
If I rebuild the WAR, the ehcache-core
JAR is excluded, but I still get the same error at startup when I run grails run-app
. I suspect the cause of the issue is the ehcache dependencies, but I can't figure out which JAR I should be using.
grails ehcache
Run adependency-report
and look for inclusions of ehcache-core in some different version. I don't have any grails 2 projects any more, but I recall that in an old one, we had to specifically exclude hibernate from plugin dependencies so that downstream dependencies would not be included as well. I think that was related to caching.
– Daniel
Nov 26 '18 at 22:40
For example, to exclude an older version of hibernate (which itself included an older version of ehcache-core) we modified the plugin inclusion likecompile(":shiro:1.2.1") { excludes "servlet-api", "hibernate", "quartz" }
once using dependency-report to identify what was including the old/incorrect dependencies
– Daniel
Nov 26 '18 at 22:44
add a comment |
In my Grails 2.5.4 app I have the following plugins installed
compile ":cache:1.1.8"
runtime ":cache-ehcache:1.0.5"
When I run grails run-app
, I get the following error at startup
java.lang.NullPointerException
at grails.plugin.cache.ehcache.GrailsEhCacheManagerFactoryBean$ReloadableCacheManager.rebuild(GrailsEhCacheManagerFactoryBean.java:171)
at grails.plugin.cache.ehcache.EhcacheConfigLoader.reload(EhcacheConfigLoader.groovy:63)
at grails.plugin.cache.ConfigLoader.reload(ConfigLoader.groovy:42)
at CacheGrailsPlugin.reloadCaches(CacheGrailsPlugin.groovy:202)
at CacheGrailsPlugin$_closure3.doCall(CacheGrailsPlugin.groovy:158)
If I build the WAR and look in the lib
directory, it contains both of the following dependencies:
- ehcache-2.9.0.jar
- ehcache-core-2.4.8.jar
Based on the advice in this issue, I excluded the transitive ehcache-core
dependency in BuildConfig
runtime (":hibernate:3.6.10.18") {
excludes "ehcache-core"
}
If I rebuild the WAR, the ehcache-core
JAR is excluded, but I still get the same error at startup when I run grails run-app
. I suspect the cause of the issue is the ehcache dependencies, but I can't figure out which JAR I should be using.
grails ehcache
In my Grails 2.5.4 app I have the following plugins installed
compile ":cache:1.1.8"
runtime ":cache-ehcache:1.0.5"
When I run grails run-app
, I get the following error at startup
java.lang.NullPointerException
at grails.plugin.cache.ehcache.GrailsEhCacheManagerFactoryBean$ReloadableCacheManager.rebuild(GrailsEhCacheManagerFactoryBean.java:171)
at grails.plugin.cache.ehcache.EhcacheConfigLoader.reload(EhcacheConfigLoader.groovy:63)
at grails.plugin.cache.ConfigLoader.reload(ConfigLoader.groovy:42)
at CacheGrailsPlugin.reloadCaches(CacheGrailsPlugin.groovy:202)
at CacheGrailsPlugin$_closure3.doCall(CacheGrailsPlugin.groovy:158)
If I build the WAR and look in the lib
directory, it contains both of the following dependencies:
- ehcache-2.9.0.jar
- ehcache-core-2.4.8.jar
Based on the advice in this issue, I excluded the transitive ehcache-core
dependency in BuildConfig
runtime (":hibernate:3.6.10.18") {
excludes "ehcache-core"
}
If I rebuild the WAR, the ehcache-core
JAR is excluded, but I still get the same error at startup when I run grails run-app
. I suspect the cause of the issue is the ehcache dependencies, but I can't figure out which JAR I should be using.
grails ehcache
grails ehcache
asked Nov 23 '18 at 18:03
DónalDónal
124k156487753
124k156487753
Run adependency-report
and look for inclusions of ehcache-core in some different version. I don't have any grails 2 projects any more, but I recall that in an old one, we had to specifically exclude hibernate from plugin dependencies so that downstream dependencies would not be included as well. I think that was related to caching.
– Daniel
Nov 26 '18 at 22:40
For example, to exclude an older version of hibernate (which itself included an older version of ehcache-core) we modified the plugin inclusion likecompile(":shiro:1.2.1") { excludes "servlet-api", "hibernate", "quartz" }
once using dependency-report to identify what was including the old/incorrect dependencies
– Daniel
Nov 26 '18 at 22:44
add a comment |
Run adependency-report
and look for inclusions of ehcache-core in some different version. I don't have any grails 2 projects any more, but I recall that in an old one, we had to specifically exclude hibernate from plugin dependencies so that downstream dependencies would not be included as well. I think that was related to caching.
– Daniel
Nov 26 '18 at 22:40
For example, to exclude an older version of hibernate (which itself included an older version of ehcache-core) we modified the plugin inclusion likecompile(":shiro:1.2.1") { excludes "servlet-api", "hibernate", "quartz" }
once using dependency-report to identify what was including the old/incorrect dependencies
– Daniel
Nov 26 '18 at 22:44
Run a
dependency-report
and look for inclusions of ehcache-core in some different version. I don't have any grails 2 projects any more, but I recall that in an old one, we had to specifically exclude hibernate from plugin dependencies so that downstream dependencies would not be included as well. I think that was related to caching.– Daniel
Nov 26 '18 at 22:40
Run a
dependency-report
and look for inclusions of ehcache-core in some different version. I don't have any grails 2 projects any more, but I recall that in an old one, we had to specifically exclude hibernate from plugin dependencies so that downstream dependencies would not be included as well. I think that was related to caching.– Daniel
Nov 26 '18 at 22:40
For example, to exclude an older version of hibernate (which itself included an older version of ehcache-core) we modified the plugin inclusion like
compile(":shiro:1.2.1") { excludes "servlet-api", "hibernate", "quartz" }
once using dependency-report to identify what was including the old/incorrect dependencies– Daniel
Nov 26 '18 at 22:44
For example, to exclude an older version of hibernate (which itself included an older version of ehcache-core) we modified the plugin inclusion like
compile(":shiro:1.2.1") { excludes "servlet-api", "hibernate", "quartz" }
once using dependency-report to identify what was including the old/incorrect dependencies– Daniel
Nov 26 '18 at 22:44
add a comment |
1 Answer
1
active
oldest
votes
Upgrading to hibernate 3.6.10.19 seemed to resolve this issue. When I build the WAR the following ehcache dependencies are included:
- ehcache-2.9.0.jar
- hibernate-ehcache-3.6.10.Final.jar
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53451212%2fexception-when-initialising-cache-causes-grails-run-app-to-fail%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Upgrading to hibernate 3.6.10.19 seemed to resolve this issue. When I build the WAR the following ehcache dependencies are included:
- ehcache-2.9.0.jar
- hibernate-ehcache-3.6.10.Final.jar
add a comment |
Upgrading to hibernate 3.6.10.19 seemed to resolve this issue. When I build the WAR the following ehcache dependencies are included:
- ehcache-2.9.0.jar
- hibernate-ehcache-3.6.10.Final.jar
add a comment |
Upgrading to hibernate 3.6.10.19 seemed to resolve this issue. When I build the WAR the following ehcache dependencies are included:
- ehcache-2.9.0.jar
- hibernate-ehcache-3.6.10.Final.jar
Upgrading to hibernate 3.6.10.19 seemed to resolve this issue. When I build the WAR the following ehcache dependencies are included:
- ehcache-2.9.0.jar
- hibernate-ehcache-3.6.10.Final.jar
answered Nov 28 '18 at 16:57
DónalDónal
124k156487753
124k156487753
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53451212%2fexception-when-initialising-cache-causes-grails-run-app-to-fail%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Run a
dependency-report
and look for inclusions of ehcache-core in some different version. I don't have any grails 2 projects any more, but I recall that in an old one, we had to specifically exclude hibernate from plugin dependencies so that downstream dependencies would not be included as well. I think that was related to caching.– Daniel
Nov 26 '18 at 22:40
For example, to exclude an older version of hibernate (which itself included an older version of ehcache-core) we modified the plugin inclusion like
compile(":shiro:1.2.1") { excludes "servlet-api", "hibernate", "quartz" }
once using dependency-report to identify what was including the old/incorrect dependencies– Daniel
Nov 26 '18 at 22:44