Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.7.8
-
Fix Version/s: 1.8.3, 1.9-beta-4
-
Component/s: Compiler
-
Labels:None
-
Number of attachments :
Description
I found this bug when using Springcache in a Grails project. I have a service method which flushes a cache.
class MyService {
@CacheFlush('MyCache')
def update(paramA, paramB, paramC=null) {
...
}
}
When I call the update method with all three parameters, Springcache flushes the cache correctly. But when I call with only the first two parameters, Springcache will not flush the cache.