ContextLifecycle lifeCycle = manager.getServices().get(ContextLifecycle.class);
String requestId = UUID.randomUUID().toString();
BeanStore beanStore = new ConcurrentHashMapBeanStore();
lifeCycle.beginRequest(requestId, beanStore);
context.register(endRequestEvent, new DestoryRequest(requestId, beanStore));
}
/**