Uses of Interface
org.springframework.context.EnvironmentAware
Packages that use EnvironmentAware Package Description org.springframework.context.annotation Annotation support for the Application Context, including JSR-250 "common" annotations, component-scanning, and Java-based metadata for creating Spring-managed objects.org.springframework.context.support Classes supporting the org.springframework.context package, such as abstract base classes for ApplicationContext implementations and a MessageSource implementation.org.springframework.orm.hibernate5.support Classes supporting theorg.springframework.orm.hibernate5
package.org.springframework.orm.jpa.support Classes supporting theorg.springframework.orm.jpa
package.org.springframework.web.filter Provides generic filter base classes allowing for bean-style configuration.org.springframework.web.multipart.support Support classes for the multipart resolution framework.org.springframework.web.servlet Provides servlets that integrate with the application context infrastructure, and the core interfaces and classes for the Spring web MVC framework.org.springframework.web.servlet.resource Support classes for serving static resources.Uses of EnvironmentAware in org.springframework.context.annotation
Classes in org.springframework.context.annotation that implement EnvironmentAware Modifier and Type Class Description class
ConfigurationClassPostProcessor
BeanFactoryPostProcessor
used for bootstrapping processing of@Configuration
classes.class
MBeanExportConfiguration
@Configuration
class that registers aAnnotationMBeanExporter
bean.Uses of EnvironmentAware in org.springframework.context.support
Classes in org.springframework.context.support that implement EnvironmentAware Modifier and Type Class Description class
PropertySourcesPlaceholderConfigurer
Specialization ofPlaceholderConfigurerSupport
that resolves ${...} placeholders within bean definition property values and@Value
annotations against the current SpringEnvironment
and its set ofPropertySources
.Uses of EnvironmentAware in org.springframework.orm.hibernate5.support
Classes in org.springframework.orm.hibernate5.support that implement EnvironmentAware Modifier and Type Class Description class
OpenSessionInViewFilter
Servlet Filter that binds a Hibernate Session to the thread for the entire processing of the request.Uses of EnvironmentAware in org.springframework.orm.jpa.support
Classes in org.springframework.orm.jpa.support that implement EnvironmentAware Modifier and Type Class Description class
OpenEntityManagerInViewFilter
Servlet Filter that binds a JPA EntityManager to the thread for the entire processing of the request.Uses of EnvironmentAware in org.springframework.web.filter
Classes in org.springframework.web.filter that implement EnvironmentAware Modifier and Type Class Description class
AbstractRequestLoggingFilter
Base class forFilter
s that perform logging operations before and after a request is processed.class
CharacterEncodingFilter
Servlet Filter that allows one to specify a character encoding for requests.class
CommonsRequestLoggingFilter
Simple request logging filter that writes the request URI (and optionally the query string) to the Commons Log.class
CorsFilter
Filter
that handles CORS preflight requests and intercepts CORS simple and actual requests thanks to aCorsProcessor
implementation (DefaultCorsProcessor
by default) in order to add the relevant CORS response headers (likeAccess-Control-Allow-Origin
) using the providedCorsConfigurationSource
(for example anUrlBasedCorsConfigurationSource
instance.class
DelegatingFilterProxy
Proxy for a standard Servlet Filter, delegating to a Spring-managed bean that implements the Filter interface.class
FormContentFilter
Filter
that parses form data for HTTP PUT, PATCH, and DELETE requests and exposes it as Servlet request parameters.class
ForwardedHeaderFilter
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
GenericFilterBean
Simple base implementation ofFilter
which treats its config parameters (init-param
entries within thefilter
tag inweb.xml
) as bean properties.class
HiddenHttpMethodFilter
Filter
that converts posted method parameters into HTTP methods, retrievable viaHttpServletRequest.getMethod()
.class
HttpPutFormContentFilter
Deprecated.as of 5.1 in favor ofFormContentFilter
which is the same but also handles DELETE.class
OncePerRequestFilter
Filter base class that aims to guarantee a single execution per request dispatch, on any servlet container.class
RelativeRedirectFilter
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
RequestContextFilter
Servlet Filter that exposes the request to the current thread, through bothLocaleContextHolder
andRequestContextHolder
.class
ServletContextRequestLoggingFilter
Simple request logging filter that writes the request URI (and optionally the query string) to the ServletContext log.class
ShallowEtagHeaderFilter
Filter
that generates anETag
value based on the content on the response.Uses of EnvironmentAware in org.springframework.web.multipart.support
Classes in org.springframework.web.multipart.support that implement EnvironmentAware Modifier and Type Class Description class
MultipartFilter
Servlet Filter that resolves multipart requests via aMultipartResolver
.Uses of EnvironmentAware in org.springframework.web.servlet
Classes in org.springframework.web.servlet that implement EnvironmentAware Modifier and Type Class Description class
DispatcherServlet
Central dispatcher for HTTP request handlers/controllers, e.g.class
FrameworkServlet
Base servlet for Spring's web framework.class
HttpServletBean
Simple extension ofHttpServlet
which treats its config parameters (init-param
entries within theservlet
tag inweb.xml
) as bean properties.Uses of EnvironmentAware in org.springframework.web.servlet.resource
Classes in org.springframework.web.servlet.resource that implement EnvironmentAware Modifier and Type Class Description class
ResourceUrlEncodingFilter
A filter that wraps theHttpServletResponse
and overrides itsencodeURL
method in order to translate internal resource request URLs into public URL paths for external use.