Fix memory leak on AOP Proxy class definition cache #27375
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix memory leak on AOP Proxy class definition cache.
How to reproduce
@Validated
annotation with Request scope Controller like bellowWhy
this bug is intruced by:
Because
@Validated
annotation added,AbstractAdvisingBeanPostProcessor#postProcessAfterInitialization
add advice for@Validated
Before Improve AdvisedSupport.getAdvisors() #26017,
cache in org.springframework.cglib.core.AbstractClassGenerator works well.
Because org.springframework.aop.framework.AdvisedSupport#getConfigurationOnlyCopy
copy org.springframework.aop.framework.AdvisedSupport#advisorsArray for create copy instance.
But after #26017,
use same reference of org.springframework.aop.framework.AdvisedSupport#advisors for
create copy instance. and this advitors field update by AbstractAdvisingBeanPostProcessor#postProcessAfterInitialization
Cache key is defined below code:
org.springframework.cglib.proxy.Enhancer#filter is registered at
https://github.com/spring-projects/spring-framework/blob/main/spring-aop/src/main/java/org/springframework/aop/framework/CglibAopProxy.java#L201-L202
At AbstractAdvisingBeanPostProcessor#postProcessAfterInitialization, advice object
updated and therefore cache key is pollute, cache miss and memory leak happen.
So, When creating copy instance on org.springframework.aop.framework.AdvisedSupport#getConfigurationOnlyCopy,
It is good that create new instance of ArrayList and copy all advices.
This bug reported by @hikoma Thanks!