Uses of Interface
org.springframework.beans.factory.DisposableBean
Packages that use DisposableBean Package Description org.springframework.aop.framework.autoproxy.target org.springframework.aop.target org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories.org.springframework.beans.factory.serviceloader Support package for the Java 6 ServiceLoader facility.org.springframework.beans.factory.support Classes supporting theorg.springframework.beans.factorypackage.org.springframework.beans.factory.wiring Mechanism to determine bean wiring metadata from a bean instance.org.springframework.cache.ehcache Support classes for the open source cache EhCache 2.x, allowing to set up an EhCache CacheManager and Caches as beans in a Spring context.org.springframework.cache.jcache Implementation package for JSR-107 (javax.cache aka "JCache") based caches.org.springframework.context.weaving Load-time weaving support for a Spring application context, building on Spring'sLoadTimeWeaverabstraction.org.springframework.ejb.access This package contains classes that allow easy access to EJBs.org.springframework.http.client Contains an abstraction over client-side HTTP.org.springframework.http.client.reactive Abstractions for reactive HTTP client support includingClientHttpRequestandClientHttpResponseas well as aClientHttpConnector.org.springframework.jca.cci.connection Provides a utility class for easy ConnectionFactory access, a PlatformTransactionManager for local CCI transactions, and various simple ConnectionFactory proxies/adapters.org.springframework.jca.endpoint This package provides a facility for generic JCA message endpoint management.org.springframework.jca.support Provides generic support classes for JCA usage within Spring, mainly for local setup of a JCA ResourceAdapter and/or ConnectionFactory.org.springframework.jdbc.config Defines the Spring JDBC configuration namespace.org.springframework.jdbc.datasource Provides a utility class for easy DataSource access, a PlatformTransactionManager for a single DataSource, and various simple DataSource implementations.org.springframework.jdbc.datasource.embedded Provides extensible support for creating embedded database instances.org.springframework.jdbc.datasource.init Provides extensible support for initializing databases through scripts.org.springframework.jms.config Support package for declarative messaging configuration, with Java configuration and XML schema support.org.springframework.jms.connection Provides a PlatformTransactionManager implementation for a single JMS ConnectionFactory, and a SingleConnectionFactory adapter.org.springframework.jms.listener This package contains the base message listener container facility.org.springframework.jms.listener.endpoint This package provides JCA-based endpoint management for JMS message listeners.org.springframework.jmx.access Provides support for accessing remote MBean resources.org.springframework.jmx.export This package provides declarative creation and registration of Spring-managed beans as JMX MBeans.org.springframework.jmx.export.annotation Java 5 annotations for MBean exposure.org.springframework.jmx.support Contains support classes for connecting to local and remoteMBeanServers and for exposing anMBeanServerto remote clients.org.springframework.orm.hibernate5 Package providing integration of Hibernate 5.x with Spring concepts.org.springframework.orm.hibernate5.support Classes supporting theorg.springframework.orm.hibernate5package.org.springframework.orm.jpa Package providing integration of JPA (Java Persistence API) with Spring concepts.org.springframework.orm.jpa.support Classes supporting theorg.springframework.orm.jpapackage.org.springframework.remoting.jaxws Remoting classes for Web Services via JAX-WS (the successor of JAX-RPC), as included in Java 6 and Java EE 5.org.springframework.remoting.rmi Remoting classes for conventional RMI and transparent remoting via RMI invokers.org.springframework.remoting.support Generic support classes for remoting implementations.org.springframework.scheduling.annotation Java 5 annotation for asynchronous method execution.org.springframework.scheduling.commonj Convenience classes for scheduling based on the CommonJ WorkManager/TimerManager facility, as supported by IBM WebSphere 6.0+ and BEA WebLogic 9.0+.org.springframework.scheduling.concurrent Scheduling convenience classes for thejava.util.concurrentandjavax.enterprise.concurrentpackages, allowing to set up a ThreadPoolExecutor or ScheduledThreadPoolExecutor as a bean in a Spring context.org.springframework.scheduling.config Support package for declarative scheduling configuration, with XML schema being the primary configuration format.org.springframework.scheduling.quartz Support classes for the open source scheduler Quartz, allowing to set up Quartz Schedulers, JobDetails and Triggers as beans in a Spring context.org.springframework.scripting.support Support classes for Spring's scripting package.org.springframework.validation.beanvalidation Support classes for integrating a JSR-303 Bean Validation provider (such as Hibernate Validator) into a Spring ApplicationContext and in particular with Spring's data binding and validation APIs.org.springframework.web.context.support Classes supporting theorg.springframework.web.contextpackage, such as WebApplicationContext implementations and various utility classes.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.mvc Standard controller implementations for the Servlet MVC framework that comes with Spring.org.springframework.web.servlet.resource Support classes for serving static resources.org.springframework.web.servlet.view Provides standard View and ViewResolver implementations, including abstract base classes for custom implementations.org.springframework.web.servlet.view.tiles3 Support classes for the integration of Tiles 3 (the standalone version of Tiles) as Spring web view technology.Uses of DisposableBean in org.springframework.aop.framework.autoproxy.target
Classes in org.springframework.aop.framework.autoproxy.target that implement DisposableBean Modifier and Type Class Description classAbstractBeanFactoryBasedTargetSourceCreatorConvenient superclass forTargetSourceCreatorimplementations that require creating multiple instances of a prototype bean.classLazyInitTargetSourceCreatorTargetSourceCreator that enforces a LazyInitTargetSource for each bean that is defined as "lazy-init".classQuickTargetSourceCreatorConvenient TargetSourceCreator using bean name prefixes to create one of three well-known TargetSource types: : CommonsPool2TargetSource % ThreadLocalTargetSource ! PrototypeTargetSourceUses of DisposableBean in org.springframework.aop.target
Classes in org.springframework.aop.target that implement DisposableBean Modifier and Type Class Description classAbstractPoolingTargetSourceAbstract base class for poolingTargetSourceimplementations which maintain a pool of target instances, acquiring and releasing a target object from the pool for each method invocation.classCommonsPool2TargetSourceTargetSourceimplementation that holds objects in a configurable Apache Commons2 Pool.classThreadLocalTargetSourceAlternative to an object pool.Uses of DisposableBean in org.springframework.beans.factory.config
Classes in org.springframework.beans.factory.config that implement DisposableBean Modifier and Type Class Description classAbstractFactoryBean<T>Simple template superclass forFactoryBeanimplementations that creates a singleton or a prototype object, depending on a flag.classListFactoryBeanSimple factory for shared List instances.classMapFactoryBeanSimple factory for shared Map instances.classObjectFactoryCreatingFactoryBeanAFactoryBeanimplementation that returns a value which is anObjectFactorythat in turn returns a bean sourced from aBeanFactory.classProviderCreatingFactoryBeanAFactoryBeanimplementation that returns a value which is a JSR-330Providerthat in turn returns a bean sourced from aBeanFactory.classSetFactoryBeanSimple factory for shared Set instances.Uses of DisposableBean in org.springframework.beans.factory.serviceloader
Classes in org.springframework.beans.factory.serviceloader that implement DisposableBean Modifier and Type Class Description classAbstractServiceLoaderBasedFactoryBeanAbstract base class for FactoryBeans operating on the JDK 1.6ServiceLoaderfacility.classServiceFactoryBeanFactoryBeanthat exposes the 'primary' service for the configured service class, obtained through the JDK 1.6ServiceLoaderfacility.classServiceListFactoryBeanFactoryBeanthat exposes all services for the configured service class, represented as a List of service objects, obtained through the JDK 1.6ServiceLoaderfacility.classServiceLoaderFactoryBeanFactoryBeanthat exposes the JDK 1.6ServiceLoaderfor the configured service class.Uses of DisposableBean in org.springframework.beans.factory.support
Methods in org.springframework.beans.factory.support with parameters of type DisposableBean Modifier and Type Method Description protected voidDefaultSingletonBeanRegistry. destroyBean(String beanName, DisposableBean bean)Destroy the given bean.voidDefaultSingletonBeanRegistry. registerDisposableBean(String beanName, DisposableBean bean)Add the given bean to the list of disposable beans in this registry.Uses of DisposableBean in org.springframework.beans.factory.wiring
Classes in org.springframework.beans.factory.wiring that implement DisposableBean Modifier and Type Class Description classBeanConfigurerSupportConvenient base class for bean configurers that can perform Dependency Injection on objects (however they may be created).Uses of DisposableBean in org.springframework.cache.ehcache
Classes in org.springframework.cache.ehcache that implement DisposableBean Modifier and Type Class Description classEhCacheManagerFactoryBeanFactoryBeanthat exposes an EhCacheCacheManagerinstance (independent or shared), configured from a specified config location.Uses of DisposableBean in org.springframework.cache.jcache
Classes in org.springframework.cache.jcache that implement DisposableBean Modifier and Type Class Description classJCacheManagerFactoryBeanFactoryBeanfor a JCachejavax.cache.CacheManager, obtaining a pre-definedCacheManagerby name through the standard JCachejavax.cache.Cachingclass.Uses of DisposableBean in org.springframework.context.weaving
Classes in org.springframework.context.weaving that implement DisposableBean Modifier and Type Class Description classDefaultContextLoadTimeWeaverDefaultLoadTimeWeaverbean for use in an application context, decorating an automatically detected internalLoadTimeWeaver.Uses of DisposableBean in org.springframework.ejb.access
Classes in org.springframework.ejb.access that implement DisposableBean Modifier and Type Class Description classSimpleRemoteSlsbInvokerInterceptorBasic invoker for a remote Stateless Session Bean.classSimpleRemoteStatelessSessionProxyFactoryBeanConvenientFactoryBeanfor remote SLSB proxies.Uses of DisposableBean in org.springframework.http.client
Classes in org.springframework.http.client that implement DisposableBean Modifier and Type Class Description classHttpComponentsAsyncClientHttpRequestFactoryDeprecated.as of Spring 5.0, with no direct replacementclassHttpComponentsClientHttpRequestFactoryClientHttpRequestFactoryimplementation that uses Apache HttpComponents HttpClient to create requests.classNetty4ClientHttpRequestFactoryDeprecated.as of Spring 5.0, in favor ofReactorClientHttpConnectorclassOkHttp3ClientHttpRequestFactoryClientHttpRequestFactoryimplementation that uses OkHttp 3.x to create requests.Uses of DisposableBean in org.springframework.http.client.reactive
Classes in org.springframework.http.client.reactive that implement DisposableBean Modifier and Type Class Description classJettyResourceFactoryFactory to manage Jetty resources, i.e.classReactorResourceFactoryFactory to manage Reactor Netty resources, i.e.Uses of DisposableBean in org.springframework.jca.cci.connection
Classes in org.springframework.jca.cci.connection that implement DisposableBean Modifier and Type Class Description classSingleConnectionFactoryA CCI ConnectionFactory adapter that returns the same Connection on allgetConnectioncalls, and ignores calls toConnection.close().Uses of DisposableBean in org.springframework.jca.endpoint
Classes in org.springframework.jca.endpoint that implement DisposableBean Modifier and Type Class Description classGenericMessageEndpointManagerGeneric bean that manages JCA 1.7 message endpoints within a Spring application context, activating and deactivating the endpoint as part of the application context's lifecycle.Uses of DisposableBean in org.springframework.jca.support
Classes in org.springframework.jca.support that implement DisposableBean Modifier and Type Class Description classResourceAdapterFactoryBeanFactoryBeanthat bootstraps the specified JCA 1.7ResourceAdapter, starting it with a localBootstrapContextand exposing it for bean references.Uses of DisposableBean in org.springframework.jdbc.config
Classes in org.springframework.jdbc.config that implement DisposableBean Modifier and Type Class Description classSortedResourcesFactoryBeanFactoryBeanimplementation that takes a list of location Strings and creates a sorted array ofResourceinstances.Uses of DisposableBean in org.springframework.jdbc.datasource
Classes in org.springframework.jdbc.datasource that implement DisposableBean Modifier and Type Class Description classSingleConnectionDataSourceImplementation ofSmartDataSourcethat wraps a single JDBC Connection which is not closed after use.Uses of DisposableBean in org.springframework.jdbc.datasource.embedded
Classes in org.springframework.jdbc.datasource.embedded that implement DisposableBean Modifier and Type Class Description classEmbeddedDatabaseFactoryBeanA subclass ofEmbeddedDatabaseFactorythat implementsFactoryBeanfor registration as a Spring bean.Uses of DisposableBean in org.springframework.jdbc.datasource.init
Classes in org.springframework.jdbc.datasource.init that implement DisposableBean Modifier and Type Class Description classDataSourceInitializerUses of DisposableBean in org.springframework.jms.config
Classes in org.springframework.jms.config that implement DisposableBean Modifier and Type Class Description classJmsListenerEndpointRegistryCreates the necessaryMessageListenerContainerinstances for the registered endpoints.Uses of DisposableBean in org.springframework.jms.connection
Classes in org.springframework.jms.connection that implement DisposableBean Modifier and Type Class Description classCachingConnectionFactoryclassSingleConnectionFactoryA JMS ConnectionFactory adapter that returns the same Connection from allSingleConnectionFactory.createConnection()calls, and ignores calls toConnection.close().Uses of DisposableBean in org.springframework.jms.listener
Classes in org.springframework.jms.listener that implement DisposableBean Modifier and Type Class Description classAbstractJmsListeningContainerCommon base class for all containers which need to implement listening based on a JMS Connection (either shared or freshly obtained for each attempt).classAbstractMessageListenerContainerAbstract base class for Spring message listener container implementations.classAbstractPollingMessageListenerContainerBase class for listener container implementations which are based on polling.classDefaultMessageListenerContainerMessage listener container variant that uses plain JMS client APIs, specifically a loop ofMessageConsumer.receive()calls that also allow for transactional reception of messages (registering them with XA transactions).classSimpleMessageListenerContainerMessage listener container that uses the plain JMS client API'sMessageConsumer.setMessageListener()method to create concurrent MessageConsumers for the specified listeners.Uses of DisposableBean in org.springframework.jms.listener.endpoint
Classes in org.springframework.jms.listener.endpoint that implement DisposableBean Modifier and Type Class Description classJmsMessageEndpointManagerExtension of the generic JCA 1.5GenericMessageEndpointManager, adding JMS-specific support for ActivationSpec configuration.Uses of DisposableBean in org.springframework.jmx.access
Classes in org.springframework.jmx.access that implement DisposableBean Modifier and Type Class Description classMBeanClientInterceptorMethodInterceptorthat routes calls to an MBean running on the suppliedMBeanServerConnection.classMBeanProxyFactoryBeanCreates a proxy to a managed resource running either locally or remotely.classNotificationListenerRegistrarRegistrar object that associates a specificNotificationListenerwith one or more MBeans in anMBeanServer(typically via aMBeanServerConnection).Uses of DisposableBean in org.springframework.jmx.export
Classes in org.springframework.jmx.export that implement DisposableBean Modifier and Type Class Description classMBeanExporterJMX exporter that allows for exposing any Spring-managed bean to a JMXMBeanServer, without the need to define any JMX-specific information in the bean classes.Uses of DisposableBean in org.springframework.jmx.export.annotation
Classes in org.springframework.jmx.export.annotation that implement DisposableBean Modifier and Type Class Description classAnnotationMBeanExporterConvenient subclass of Spring's standardMBeanExporter, activating Java 5 annotation usage for JMX exposure of Spring beans:ManagedResource,ManagedAttribute,ManagedOperation, etc.Uses of DisposableBean in org.springframework.jmx.support
Classes in org.springframework.jmx.support that implement DisposableBean Modifier and Type Class Description classConnectorServerFactoryBeanFactoryBeanthat creates a JSR-160JMXConnectorServer, optionally registers it with theMBeanServer, and then starts it.classMBeanServerConnectionFactoryBeanFactoryBeanthat creates a JMX 1.2MBeanServerConnectionto a remoteMBeanServerexposed via aJMXServerConnector.classMBeanServerFactoryBeanFactoryBeanthat obtains aMBeanServerreference through the standard JMX 1.2MBeanServerFactoryAPI.Uses of DisposableBean in org.springframework.orm.hibernate5
Classes in org.springframework.orm.hibernate5 that implement DisposableBean Modifier and Type Class Description classLocalSessionFactoryBeanFactoryBeanthat creates a HibernateSessionFactory.Uses of DisposableBean in org.springframework.orm.hibernate5.support
Classes in org.springframework.orm.hibernate5.support that implement DisposableBean Modifier and Type Class Description classOpenSessionInViewFilterServlet Filter that binds a Hibernate Session to the thread for the entire processing of the request.Uses of DisposableBean in org.springframework.orm.jpa
Classes in org.springframework.orm.jpa that implement DisposableBean Modifier and Type Class Description classAbstractEntityManagerFactoryBeanAbstractFactoryBeanthat creates a local JPAEntityManagerFactoryinstance within a Spring application context.classLocalContainerEntityManagerFactoryBeanFactoryBeanthat creates a JPAEntityManagerFactoryaccording to JPA's standard container bootstrap contract.classLocalEntityManagerFactoryBeanFactoryBeanthat creates a JPAEntityManagerFactoryaccording to JPA's standard standalone bootstrap contract.Uses of DisposableBean in org.springframework.orm.jpa.support
Classes in org.springframework.orm.jpa.support that implement DisposableBean Modifier and Type Class Description classOpenEntityManagerInViewFilterServlet Filter that binds a JPA EntityManager to the thread for the entire processing of the request.Uses of DisposableBean in org.springframework.remoting.jaxws
Classes in org.springframework.remoting.jaxws that implement DisposableBean Modifier and Type Class Description classAbstractJaxWsServiceExporterAbstract exporter for JAX-WS services, autodetecting annotated service beans (through the JAX-WSWebServiceannotation).classSimpleHttpServerJaxWsServiceExporterDeprecated.as of Spring Framework 5.1, in favor ofSimpleJaxWsServiceExporterclassSimpleJaxWsServiceExporterSimple exporter for JAX-WS services, autodetecting annotated service beans (through the JAX-WSWebServiceannotation) and exporting them with a configured base address (by default "http://localhost:8080/") using the JAX-WS provider's built-in publication support.Uses of DisposableBean in org.springframework.remoting.rmi
Classes in org.springframework.remoting.rmi that implement DisposableBean Modifier and Type Class Description classJndiRmiServiceExporterService exporter which binds RMI services to JNDI.classRmiRegistryFactoryBeanFactoryBeanthat locates aRegistryand exposes it for bean references.classRmiServiceExporterRMI exporter that exposes the specified service as RMI object with the specified name.Uses of DisposableBean in org.springframework.remoting.support
Classes in org.springframework.remoting.support that implement DisposableBean Modifier and Type Class Description classSimpleHttpServerFactoryBeanDeprecated.as of Spring Framework 5.1, in favor of embedded Tomcat/Jetty/UndertowUses of DisposableBean in org.springframework.scheduling.annotation
Classes in org.springframework.scheduling.annotation that implement DisposableBean Modifier and Type Class Description classScheduledAnnotationBeanPostProcessorBean post-processor that registers methods annotated with @Scheduledto be invoked by aTaskScheduleraccording to the "fixedRate", "fixedDelay", or "cron" expression provided via the annotation.Uses of DisposableBean in org.springframework.scheduling.commonj
Classes in org.springframework.scheduling.commonj that implement DisposableBean Modifier and Type Class Description classTimerManagerAccessorDeprecated.as of 5.1, in favor of EE 7'sDefaultManagedTaskSchedulerclassTimerManagerFactoryBeanDeprecated.as of 5.1, in favor of EE 7'sDefaultManagedTaskSchedulerclassTimerManagerTaskSchedulerDeprecated.as of 5.1, in favor of EE 7'sDefaultManagedTaskSchedulerUses of DisposableBean in org.springframework.scheduling.concurrent
Classes in org.springframework.scheduling.concurrent that implement DisposableBean Modifier and Type Class Description classExecutorConfigurationSupportBase class for setting up aExecutorService(typically aThreadPoolExecutororScheduledThreadPoolExecutor).classForkJoinPoolFactoryBeanA SpringFactoryBeanthat builds and exposes a preconfiguredForkJoinPool.classScheduledExecutorFactoryBeanFactoryBeanthat sets up aScheduledExecutorService(by default: aScheduledThreadPoolExecutor) and exposes it for bean references.classThreadPoolExecutorFactoryBeanJavaBean that allows for configuring aThreadPoolExecutorin bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a bean reference of its nativeExecutorServicetype.classThreadPoolTaskExecutorJavaBean that allows for configuring aThreadPoolExecutorin bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a SpringTaskExecutor.classThreadPoolTaskSchedulerImplementation of Spring'sTaskSchedulerinterface, wrapping a nativeScheduledThreadPoolExecutor.Uses of DisposableBean in org.springframework.scheduling.config
Classes in org.springframework.scheduling.config that implement DisposableBean Modifier and Type Class Description classContextLifecycleScheduledTaskRegistrarScheduledTaskRegistrarsubclass which redirects the actual scheduling of tasks to theContextLifecycleScheduledTaskRegistrar.afterSingletonsInstantiated()callback (as of 4.1.2).classScheduledTaskRegistrarHelper bean for registering tasks with aTaskScheduler, typically using cron expressions.classTaskExecutorFactoryBeanFactoryBeanfor creatingThreadPoolTaskExecutorinstances, primarily used behind the XML task namespace.Uses of DisposableBean in org.springframework.scheduling.quartz
Classes in org.springframework.scheduling.quartz that implement DisposableBean Modifier and Type Class Description classSchedulerFactoryBeanFactoryBeanthat creates and configures a QuartzScheduler, manages its lifecycle as part of the Spring application context, and exposes the Scheduler as bean reference for dependency injection.classSimpleThreadPoolTaskExecutorSubclass of Quartz's SimpleThreadPool that implements Spring'sTaskExecutorinterface and listens to Spring lifecycle callbacks.Uses of DisposableBean in org.springframework.scripting.support
Classes in org.springframework.scripting.support that implement DisposableBean Modifier and Type Class Description classScriptFactoryPostProcessorBeanPostProcessorthat handlesScriptFactorydefinitions, replacing each factory with the actual scripted Java object generated by it.Uses of DisposableBean in org.springframework.validation.beanvalidation
Classes in org.springframework.validation.beanvalidation that implement DisposableBean Modifier and Type Class Description classLocalValidatorFactoryBeanThis is the central class forjavax.validation(JSR-303) setup in a Spring application context: It bootstraps ajavax.validation.ValidationFactoryand exposes it through the SpringValidatorinterface as well as through the JSR-303Validatorinterface and theValidatorFactoryinterface itself.classOptionalValidatorFactoryBeanLocalValidatorFactoryBeansubclass that simply turnsValidatorcalls into no-ops in case of no Bean Validation provider being available.Uses of DisposableBean in org.springframework.web.context.support
Classes in org.springframework.web.context.support that implement DisposableBean Modifier and Type Class Description classServletContextScopeScopewrapper for a ServletContext, i.e.Uses of DisposableBean in org.springframework.web.filter
Classes in org.springframework.web.filter that implement DisposableBean Modifier and Type Class Description classAbstractRequestLoggingFilterBase class forFilters that perform logging operations before and after a request is processed.classCharacterEncodingFilterServlet Filter that allows one to specify a character encoding for requests.classCommonsRequestLoggingFilterSimple request logging filter that writes the request URI (and optionally the query string) to the Commons Log.classCorsFilterFilterthat handles CORS preflight requests and intercepts CORS simple and actual requests thanks to aCorsProcessorimplementation (DefaultCorsProcessorby default) in order to add the relevant CORS response headers (likeAccess-Control-Allow-Origin) using the providedCorsConfigurationSource(for example anUrlBasedCorsConfigurationSourceinstance.classDelegatingFilterProxyProxy for a standard Servlet Filter, delegating to a Spring-managed bean that implements the Filter interface.classFormContentFilterFilterthat parses form data for HTTP PUT, PATCH, and DELETE requests and exposes it as Servlet request parameters.classForwardedHeaderFilterExtract 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).classGenericFilterBeanSimple base implementation ofFilterwhich treats its config parameters (init-paramentries within thefiltertag inweb.xml) as bean properties.classHiddenHttpMethodFilterFilterthat converts posted method parameters into HTTP methods, retrievable viaHttpServletRequest.getMethod().classHttpPutFormContentFilterDeprecated.as of 5.1 in favor ofFormContentFilterwhich is the same but also handles DELETE.classOncePerRequestFilterFilter base class that aims to guarantee a single execution per request dispatch, on any servlet container.classRelativeRedirectFilterOverridesHttpServletResponse.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.classRequestContextFilterServlet Filter that exposes the request to the current thread, through bothLocaleContextHolderandRequestContextHolder.classServletContextRequestLoggingFilterSimple request logging filter that writes the request URI (and optionally the query string) to the ServletContext log.classShallowEtagHeaderFilterFilterthat generates anETagvalue based on the content on the response.Uses of DisposableBean in org.springframework.web.multipart.support
Classes in org.springframework.web.multipart.support that implement DisposableBean Modifier and Type Class Description classMultipartFilterServlet Filter that resolves multipart requests via aMultipartResolver.Uses of DisposableBean in org.springframework.web.servlet.mvc
Classes in org.springframework.web.servlet.mvc that implement DisposableBean Modifier and Type Class Description classServletWrappingControllerSpring Controller implementation that wraps a servlet instance which it manages internally.Uses of DisposableBean in org.springframework.web.servlet.resource
Classes in org.springframework.web.servlet.resource that implement DisposableBean Modifier and Type Class Description classResourceUrlEncodingFilterA filter that wraps theHttpServletResponseand overrides itsencodeURLmethod in order to translate internal resource request URLs into public URL paths for external use.Uses of DisposableBean in org.springframework.web.servlet.view
Classes in org.springframework.web.servlet.view that implement DisposableBean Modifier and Type Class Description classResourceBundleViewResolverAViewResolverimplementation that uses bean definitions in aResourceBundle, specified by the bundle basename.classXmlViewResolverAViewResolverimplementation that uses bean definitions in a dedicated XML file for view definitions, specified by resource location.Uses of DisposableBean in org.springframework.web.servlet.view.tiles3
Classes in org.springframework.web.servlet.view.tiles3 that implement DisposableBean Modifier and Type Class Description classTilesConfigurerHelper class to configure Tiles 3.x for the Spring Framework.