Interface ServletContextAware
- All Superinterfaces:
org.springframework.beans.factory.Aware
- All Known Implementing Classes:
AbstractRequestLoggingFilter, CharacterEncodingFilter, CommonsRequestLoggingFilter, CorsFilter, DelegatingFilterProxy, FormContentFilter, ForwardedHeaderFilter, GenericFilterBean, HiddenHttpMethodFilter, MultipartFilter, OncePerRequestFilter, RelativeRedirectFilter, RequestContextFilter, ServerHttpObservationFilter, ServletContextAttributeExporter, ServletContextAttributeFactoryBean, ServletContextParameterFactoryBean, ServletContextRequestLoggingFilter, ShallowEtagHeaderFilter, UrlHandlerFilter, WebApplicationObjectSupport
public interface ServletContextAware
extends org.springframework.beans.factory.Aware
Interface to be implemented by any object that wishes to be notified of the
ServletContext (typically determined by the WebApplicationContext)
that it runs in.- Since:
- 12.03.2004
- Author:
- Juergen Hoeller, Chris Beams
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetServletContext(jakarta.servlet.ServletContext servletContext) Set theServletContextthat this object runs in.
-
Method Details
-
setServletContext
void setServletContext(jakarta.servlet.ServletContext servletContext) Set theServletContextthat this object runs in.Invoked after population of normal bean properties but before an init callback like InitializingBean's
afterPropertiesSetor a custom init-method. Invoked after ApplicationContextAware'ssetApplicationContext.- Parameters:
servletContext- the ServletContext object to be used by this object- See Also:
-