Skip to content

Cache annotation lookup in 4.3 finds more annotations than in 4.2 [SPR-14801] #19367

Closed
@spring-projects-issues

Description

@spring-projects-issues

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:

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions