public class SimpleServletPostProcessor extends Object implements DestructionAwareBeanPostProcessor, ServletContextAware, ServletConfigAware
BeanPostProcessor
 that applies initialization and destruction callbacks to beans that
 implement the Servlet interface.
 After initialization of the bean instance, the Servlet init
 method will be called with a ServletConfig that contains the bean name
 of the Servlet and the ServletContext that it is running in.
 
Before destruction of the bean instance, the Servlet destroy
 will be called.
 
Note that this post-processor does not support Servlet initialization parameters. Bean instances that implement the Servlet interface are supposed to be configured like any other Spring bean, that is, through constructor arguments or bean properties.
For reuse of a Servlet implementation in a plain Servlet container
 and as a bean in a Spring context, consider deriving from Spring's
 HttpServletBean base class that
 applies Servlet initialization parameters as bean properties, supporting
 both the standard Servlet and the Spring bean initialization style.
 
Alternatively, consider wrapping a Servlet with Spring's
 ServletWrappingController.
 This is particularly appropriate for existing Servlet classes,
 allowing to specify Servlet initialization parameters etc.
Servlet.init(javax.servlet.ServletConfig), 
Servlet.destroy(), 
SimpleServletHandlerAdapter| Constructor and Description | 
|---|
| SimpleServletPostProcessor() | 
| Modifier and Type | Method and Description | 
|---|---|
| Object | postProcessAfterInitialization(Object bean,
                              String beanName)Apply this  BeanPostProcessorto the given new bean instance after any bean
 initialization callbacks (like InitializingBean'safterPropertiesSetor a custom init-method). | 
| void | postProcessBeforeDestruction(Object bean,
                            String beanName)Apply this BeanPostProcessor to the given bean instance before its
 destruction, e.g. | 
| Object | postProcessBeforeInitialization(Object bean,
                               String beanName)Apply this  BeanPostProcessorto the given new bean instance before any bean
 initialization callbacks (like InitializingBean'safterPropertiesSetor a custom init-method). | 
| boolean | requiresDestruction(Object bean)Determine whether the given bean instance requires destruction by this
 post-processor. | 
| void | setServletConfig(ServletConfig servletConfig)Set the  ServletConfigthat this object runs in. | 
| void | setServletContext(ServletContext servletContext)Set the  ServletContextthat this object runs in. | 
| void | setUseSharedServletConfig(boolean useSharedServletConfig)Set whether to use the shared ServletConfig object passed in
 through  setServletConfig, if available. | 
public void setUseSharedServletConfig(boolean useSharedServletConfig)
setServletConfig, if available.
 Default is "true". Turn this setting to "false" to pass in a mock ServletConfig object with the bean name as servlet name, holding the current ServletContext.
public void setServletContext(ServletContext servletContext)
ServletContextAwareServletContext that this object runs in.
 Invoked after population of normal bean properties but before an init
 callback like InitializingBean's afterPropertiesSet or a
 custom init-method. Invoked after ApplicationContextAware's
 setApplicationContext.
setServletContext in interface ServletContextAwareservletContext - the ServletContext object to be used by this objectInitializingBean.afterPropertiesSet(), 
ApplicationContextAware.setApplicationContext(org.springframework.context.ApplicationContext)public void setServletConfig(ServletConfig servletConfig)
ServletConfigAwareServletConfig that this object runs in.
 Invoked after population of normal bean properties but before an init
 callback like InitializingBean's afterPropertiesSet or a
 custom init-method. Invoked after ApplicationContextAware's
 setApplicationContext.
setServletConfig in interface ServletConfigAwareservletConfig - the ServletConfig to be used by this objectInitializingBean.afterPropertiesSet(), 
ApplicationContextAware.setApplicationContext(org.springframework.context.ApplicationContext)public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException
BeanPostProcessorBeanPostProcessor to the given new bean instance before any bean
 initialization callbacks (like InitializingBean's afterPropertiesSet
 or a custom init-method). The bean will already be populated with property values.
 The returned bean instance may be a wrapper around the original.
 The default implementation returns the given bean as-is.
postProcessBeforeInitialization in interface BeanPostProcessorbean - the new bean instancebeanName - the name of the beannull, no subsequent BeanPostProcessors will be invokedBeansException - in case of errorsInitializingBean.afterPropertiesSet()public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException
BeanPostProcessorBeanPostProcessor to the given new bean instance after any bean
 initialization callbacks (like InitializingBean's afterPropertiesSet
 or a custom init-method). The bean will already be populated with property values.
 The returned bean instance may be a wrapper around the original.
 In case of a FactoryBean, this callback will be invoked for both the FactoryBean
 instance and the objects created by the FactoryBean (as of Spring 2.0). The
 post-processor can decide whether to apply to either the FactoryBean or created
 objects or both through corresponding bean instanceof FactoryBean checks.
 
This callback will also be invoked after a short-circuiting triggered by a
 InstantiationAwareBeanPostProcessor.postProcessBeforeInstantiation(java.lang.Class<?>, java.lang.String) method,
 in contrast to all other BeanPostProcessor callbacks.
 
The default implementation returns the given bean as-is.
postProcessAfterInitialization in interface BeanPostProcessorbean - the new bean instancebeanName - the name of the beannull, no subsequent BeanPostProcessors will be invokedBeansException - in case of errorsInitializingBean.afterPropertiesSet(), 
FactoryBeanpublic void postProcessBeforeDestruction(Object bean, String beanName) throws BeansException
DestructionAwareBeanPostProcessorLike DisposableBean's destroy and a custom destroy method, this
 callback will only apply to beans which the container fully manages the
 lifecycle for. This is usually the case for singletons and scoped beans.
postProcessBeforeDestruction in interface DestructionAwareBeanPostProcessorbean - the bean instance to be destroyedbeanName - the name of the beanBeansException - in case of errorsDisposableBean.destroy(), 
AbstractBeanDefinition.setDestroyMethodName(String)public boolean requiresDestruction(Object bean)
DestructionAwareBeanPostProcessorThe default implementation returns true. If a pre-5 implementation
 of DestructionAwareBeanPostProcessor does not provide a concrete
 implementation of this method, Spring silently assumes true as well.
requiresDestruction in interface DestructionAwareBeanPostProcessorbean - the bean instance to checktrue if DestructionAwareBeanPostProcessor.postProcessBeforeDestruction(java.lang.Object, java.lang.String) is supposed to
 be called for this bean instance eventually, or false if not needed