Extended default collection size for common per-bean caches

Issue: SPR-13621
This commit is contained in:
Juergen Hoeller
2015-11-13 08:31:00 +01:00
parent 7b711c4aac
commit 98be36a306
10 changed files with 16 additions and 15 deletions

View File

@@ -37,7 +37,7 @@ public abstract class AbstractAdvisingBeanPostProcessor extends ProxyProcessorSu
protected boolean beforeExistingAdvisors = false;
private final Map<Class<?>, Boolean> eligibleBeans = new ConcurrentHashMap<Class<?>, Boolean>(64);
private final Map<Class<?>, Boolean> eligibleBeans = new ConcurrentHashMap<Class<?>, Boolean>(256);
/**