Uses of Class
org.springframework.web.filter.GenericFilterBean
Packages that use GenericFilterBean
Package
Description
Classes supporting the
org.springframework.orm.hibernate5
package.Classes supporting the
org.springframework.orm.jpa
package.Provides generic filter base classes allowing for bean-style configuration.
Support classes for the multipart resolution framework.
Support classes for serving static resources.
-
Uses of GenericFilterBean in org.springframework.orm.hibernate5.support
Subclasses of GenericFilterBean in org.springframework.orm.hibernate5.supportModifier and TypeClassDescriptionclass
Servlet Filter that binds a Hibernate Session to the thread for the entire processing of the request. -
Uses of GenericFilterBean in org.springframework.orm.jpa.support
Subclasses of GenericFilterBean in org.springframework.orm.jpa.supportModifier and TypeClassDescriptionclass
Servlet Filter that binds a JPA EntityManager to the thread for the entire processing of the request. -
Uses of GenericFilterBean in org.springframework.web.filter
Subclasses of GenericFilterBean in org.springframework.web.filterModifier and TypeClassDescriptionclass
Base class forFilter
s that perform logging operations before and after a request is processed.class
Servlet Filter that allows one to specify a character encoding for requests.class
Simple request logging filter that writes the request URI (and optionally the query string) to the Commons Log.class
Filter
to handle CORS pre-flight requests and intercept CORS simple and actual requests with aCorsProcessor
, and to update the response, for example, with CORS response headers, based on the policy matched through the providedCorsConfigurationSource
.class
Proxy for a standard Servlet Filter, delegating to a Spring-managed bean that implements the Filter interface.class
Filter
that parses form data for HTTP PUT, PATCH, and DELETE requests and exposes it as Servlet request parameters.class
Extract values from "Forwarded" and "X-Forwarded-*" headers, wrap the request and response, and make they reflect the client-originated protocol and address in the following methods:getServerName()
getServerPort()
getScheme()
isSecure()
sendRedirect(String)
.class
Filter
that converts posted method parameters into HTTP methods, retrievable viaHttpServletRequest.getMethod()
.class
Filter base class that aims to guarantee a single execution per request dispatch, on any servlet container.class
OverridesHttpServletResponse.sendRedirect(String)
and handles it by setting the HTTP status and "Location" headers, which keeps the Servlet container from re-writing relative redirect URLs into absolute ones.class
Servlet Filter that exposes the request to the current thread, through bothLocaleContextHolder
andRequestContextHolder
.class
Filter
that createsobservations
for HTTP exchanges.class
Simple request logging filter that writes the request URI (and optionally the query string) to the ServletContext log.class
Filter
that generates anETag
value based on the content on the response.final class
Filter
that modifies the URL, and then redirects or wraps the request to apply the change. -
Uses of GenericFilterBean in org.springframework.web.multipart.support
Subclasses of GenericFilterBean in org.springframework.web.multipart.supportModifier and TypeClassDescriptionclass
Servlet Filter that resolves multipart requests via aMultipartResolver
. -
Uses of GenericFilterBean in org.springframework.web.servlet.resource
Subclasses of GenericFilterBean in org.springframework.web.servlet.resourceModifier and TypeClassDescriptionclass
A filter that wraps theHttpServletResponse
and overrides itsencodeURL
method in order to translate internal resource request URLs into public URL paths for external use.