Class GenericFilterBean
- All Implemented Interfaces:
Filter
,Aware
,BeanNameAware
,DisposableBean
,InitializingBean
,EnvironmentAware
,EnvironmentCapable
,ServletContextAware
- Direct Known Subclasses:
DelegatingFilterProxy
,OncePerRequestFilter
,ResourceUrlEncodingFilter
Filter
which treats
its config parameters (init-param
entries within the
filter
tag in web.xml
) as bean properties.
A handy superclass for any type of filter. Type conversion of config parameters is automatic, with the corresponding setter method getting invoked with the converted value. It is also possible for subclasses to specify required properties. Parameters without matching bean property setter will simply be ignored.
This filter leaves actual filtering to subclasses, which have to
implement the Filter.doFilter(jakarta.servlet.ServletRequest, jakarta.servlet.ServletResponse, jakarta.servlet.FilterChain)
method.
This generic filter base class has no dependency on the Spring
ApplicationContext
concept.
Filters usually don't load their own context but rather access service
beans from the Spring root application context, accessible via the
filter's ServletContext
(see
WebApplicationContextUtils
).
- Since:
- 06.12.2003
- Author:
- Juergen Hoeller
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected final void
addRequiredProperty
(String property) Subclasses can invoke this method to specify that this property (which must match a JavaBean property they expose) is mandatory, and must be supplied as a config parameter.void
Calls theinitFilterBean()
method that might contain custom initialization of a subclass.protected Environment
Create and return a newStandardServletEnvironment
.void
destroy()
Subclasses may override this to perform custom filter shutdown.Return theEnvironment
associated with this filter.Make the FilterConfig of this filter available, if any.protected String
Make the name of this filter available to subclasses.protected ServletContext
Make the ServletContext of this filter available to subclasses.final void
init
(FilterConfig filterConfig) Standard way of initializing this filter.protected void
Initialize the BeanWrapper for this GenericFilterBean, possibly with custom editors.protected void
Subclasses may override this to perform custom initialization.void
setBeanName
(String beanName) Stores the bean name as defined in the Spring bean factory.void
setEnvironment
(Environment environment) Set theEnvironment
that this filter runs in.void
setServletContext
(ServletContext servletContext) Stores the ServletContext that the bean factory runs in.
-
Field Details
-
logger
Logger available to subclasses.
-
-
Constructor Details
-
GenericFilterBean
public GenericFilterBean()
-
-
Method Details
-
setBeanName
Stores the bean name as defined in the Spring bean factory.Only relevant in case of initialization as bean, to have a name as fallback to the filter name usually provided by a FilterConfig instance.
- Specified by:
setBeanName
in interfaceBeanNameAware
- Parameters:
beanName
- the name of the bean in the factory. Note that this name is the actual bean name used in the factory, which may differ from the originally specified name: in particular for inner bean names, the actual bean name might have been made unique through appending "#..." suffixes. Use theBeanFactoryUtils.originalBeanName(String)
method to extract the original bean name (without suffix), if desired.- See Also:
-
setEnvironment
Set theEnvironment
that this filter runs in.Any environment set here overrides the
StandardServletEnvironment
provided by default.This
Environment
object is used only for resolving placeholders in resource paths passed into init-parameters for this filter. If no init-params are used, thisEnvironment
can be essentially ignored.- Specified by:
setEnvironment
in interfaceEnvironmentAware
-
getEnvironment
Return theEnvironment
associated with this filter.If none specified, a default environment will be initialized via
createEnvironment()
.- Specified by:
getEnvironment
in interfaceEnvironmentCapable
- Since:
- 4.3.9
-
createEnvironment
Create and return a newStandardServletEnvironment
.Subclasses may override this in order to configure the environment or specialize the environment type returned.
- Since:
- 4.3.9
-
setServletContext
Stores the ServletContext that the bean factory runs in.Only relevant in case of initialization as bean, to have a ServletContext as fallback to the context usually provided by a FilterConfig instance.
- Specified by:
setServletContext
in interfaceServletContextAware
- Parameters:
servletContext
- the ServletContext object to be used by this object- See Also:
-
afterPropertiesSet
Calls theinitFilterBean()
method that might contain custom initialization of a subclass.Only relevant in case of initialization as bean, where the standard
init(FilterConfig)
method won't be called.- Specified by:
afterPropertiesSet
in interfaceInitializingBean
- Throws:
ServletException
- See Also:
-
destroy
public void destroy()Subclasses may override this to perform custom filter shutdown.Note: This method will be called from standard filter destruction as well as filter bean destruction in a Spring application context.
This default implementation is empty.
- Specified by:
destroy
in interfaceDisposableBean
- Specified by:
destroy
in interfaceFilter
-
addRequiredProperty
Subclasses can invoke this method to specify that this property (which must match a JavaBean property they expose) is mandatory, and must be supplied as a config parameter. This should be called from the constructor of a subclass.This method is only relevant in case of traditional initialization driven by a FilterConfig instance.
- Parameters:
property
- name of the required property
-
init
Standard way of initializing this filter. Map config parameters onto bean properties of this filter, and invoke subclass initialization.- Specified by:
init
in interfaceFilter
- Parameters:
filterConfig
- the configuration for this filter- Throws:
ServletException
- if bean properties are invalid (or required properties are missing), or if subclass initialization fails.- See Also:
-
initBeanWrapper
Initialize the BeanWrapper for this GenericFilterBean, possibly with custom editors.This default implementation is empty.
- Parameters:
bw
- the BeanWrapper to initialize- Throws:
BeansException
- if thrown by BeanWrapper methods- See Also:
-
initFilterBean
Subclasses may override this to perform custom initialization. All bean properties of this filter will have been set before this method is invoked.Note: This method will be called from standard filter initialization as well as filter bean initialization in a Spring application context. Filter name and ServletContext will be available in both cases.
This default implementation is empty.
- Throws:
ServletException
- if subclass initialization fails- See Also:
-
getFilterConfig
Make the FilterConfig of this filter available, if any. Analogous to GenericServlet'sgetServletConfig()
.Public to resemble the
getFilterConfig()
method of the Servlet Filter version that shipped with WebLogic 6.1.- Returns:
- the FilterConfig instance, or
null
if none available - See Also:
-
getFilterName
Make the name of this filter available to subclasses. Analogous to GenericServlet'sgetServletName()
.Takes the FilterConfig's filter name by default. If initialized as bean in a Spring application context, it falls back to the bean name as defined in the bean factory.
- Returns:
- the filter name, or
null
if none available - See Also:
-
getServletContext
Make the ServletContext of this filter available to subclasses. Analogous to GenericServlet'sgetServletContext()
.Takes the FilterConfig's ServletContext by default. If initialized as bean in a Spring application context, it falls back to the ServletContext that the bean factory runs in.
- Returns:
- the ServletContext instance
- Throws:
IllegalStateException
- if no ServletContext is available- See Also:
-