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
Hi,
I'm currently trying to use caching in my application, and I noticed that Spring 4.3 breaks previously working behaviour. My implementation uses a spring cloud netflix Feign client with a fallback, the cache is only used in case of errors.
The current setup is that the main client uses @CachePut so that the data returned is always current. In case of an error the fallback acts and uses @Cacheable to return cached results or throws an exception if there are no cached results.
Due to the way spring cloud's feign integration works, the main client is an annotated interface and the fallback is a bean implementing this interface.
When using spring 4.2 (through spring boot 1.3.x) the setup works as expected. But when upgrading to 4.3 (spring boot 1.4.x) the caching no longer works.
I tracked the change in behaviour down to the introduction of the merged annotation lookup (In SpringCacheAnnotationParser).
For the fallback, the old lookup used in 4.2 would only return the @Cacheable annotation. Starting with 4.3, AnnotatedElementUtils.findAllMergedAnnotations will also return the @CachePut from the interface.
Due to both annotation being parsed for the fallback, the caching logic will ignore the @Cacheable step, since it assumes a CachePut just happened, meaning the cached values will never be returned.
I hope this description is sufficient, but I could try and provide an example if needed
It turns out that due to the explicit fallback lookup between class and interface in AbstractFallbackCacheOperationSource, SpringCacheAnnotationParser needs to use AnnotatedElementUtils.getAllMergedAnnotations instead of findAllMergedAnnotations (which has an implicit fallback to interface methods). This also affected the overriding of interface-declared annotations on class-declared methods. Fixed for 4.3.4 now.
Jakob Fels opened SPR-14801 and commented
Hi,
I'm currently trying to use caching in my application, and I noticed that Spring 4.3 breaks previously working behaviour. My implementation uses a spring cloud netflix Feign client with a fallback, the cache is only used in case of errors.
The current setup is that the main client uses
@CachePut
so that the data returned is always current. In case of an error the fallback acts and uses@Cacheable
to return cached results or throws an exception if there are no cached results.Due to the way spring cloud's feign integration works, the main client is an annotated interface and the fallback is a bean implementing this interface.
When using spring 4.2 (through spring boot 1.3.x) the setup works as expected. But when upgrading to 4.3 (spring boot 1.4.x) the caching no longer works.
I tracked the change in behaviour down to the introduction of the merged annotation lookup (In SpringCacheAnnotationParser).
For the fallback, the old lookup used in 4.2 would only return the
@Cacheable
annotation. Starting with 4.3, AnnotatedElementUtils.findAllMergedAnnotations will also return the@CachePut
from the interface.Due to both annotation being parsed for the fallback, the caching logic will ignore the
@Cacheable
step, since it assumes a CachePut just happened, meaning the cached values will never be returned.I hope this description is sufficient, but I could try and provide an example if needed
Affects: 4.3.3
Issue Links:
@CacheConfig
(cacheNames) broken when used on interface@Cache
* as merged composed annotations@Cacheable
declarations on interface methodsThe text was updated successfully, but these errors were encountered: