You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to implement this plugin but I'm not able to get it working. It would really help to have a minimal grails 3 application that has a working example in it. In particular I'd like to see a working ehcache.xml file.
My particular issue is, although I can see the XML config is loaded and my cache names are also loaded, I'm not actually getting caching for my annotated methods (method internals are run every time). This was working fine in Grails 2 with the older plugin.
Attempting to search for ehcache xml configuration at classpath:ehcache.xml
Configuration found at classpath:ehcache.xml
Using provided configuration
Cache names: [longTermCache, outageCache, shortTermCache]
The text was updated successfully, but these errors were encountered:
i am using @Cacheable("decode") on a method
and have the following in application.groovy grails { cache { ehcache { ehcacheXmlLocation = 'ehcache.xml' } } }
my ehcache.xml file is located in grails-app under conf package
@ArsenBabakhanyan 's ehcache.xml file doesnt work for me. is it still the currient ehcache.xml file?
I 'm using ehcache ''org.grails.plugins:cache-ehcache:3.0.0.M1'' grails 3.3.1. Could u guys provide a complete ehcache.xml file?
thanks
I'm trying to implement this plugin but I'm not able to get it working. It would really help to have a minimal grails 3 application that has a working example in it. In particular I'd like to see a working
ehcache.xml
file.My particular issue is, although I can see the XML config is loaded and my cache names are also loaded, I'm not actually getting caching for my annotated methods (method internals are run every time). This was working fine in Grails 2 with the older plugin.
The text was updated successfully, but these errors were encountered: