| org.springframework.web.context.ServletContextAware
All known Subclasses: org.springframework.web.context.support.ServletContextParameterFactoryBean, org.springframework.web.context.support.ServletContextAttributeExporter, org.springframework.web.context.support.ServletContextFactoryBean, org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer, org.springframework.web.servlet.handler.SimpleServletPostProcessor, org.springframework.web.context.support.ServletContextAttributeFactoryBean, org.springframework.web.multipart.cos.CosMultipartResolver, org.springframework.web.multipart.commons.CommonsMultipartResolver, org.springframework.web.context.support.WebApplicationObjectSupport, org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer, org.springframework.web.filter.GenericFilterBean,
ServletContextAware | public interface ServletContextAware (Code) | | Interface to be implemented by any object that wishes to be notified
of the ServletContext (typically determined by the WebApplicationContext)
that it runs in.
author: Juergen Hoeller since: 12.03.2004 See Also: ServletConfigAware |
Method Summary | |
void | setServletContext(ServletContext servletContext) Set the ServletContext 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. |
|
|