// At this point the bean store should never be set - see also HttpContextLifecycle#nestedInvocationGuard
if (getBeanStore() != null) {
ContextLogger.LOG.beanStoreLeakDuringAssociation(this.getClass().getName(), request);
}
// We always associate a new bean store to avoid possible leaks (security threats)
setBeanStore(new RequestBeanStore(request, namingScheme));
getBeanStore().attach();
return true;
}