Uses of Interface
org.springframework.beans.factory.DisposableBean

Packages that use DisposableBean
org.springframework.aop.target This package contains implementations of the org.springframework.aop.TargetSource interface.  
org.springframework.beans.factory.support Classes supporting the org.springframework.beans.factory package.  
org.springframework.cache.ehcache Support classes for the open source cache EHCache, allowing to set up an EHCache CacheManager and Caches as beans in a Spring context. 
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.jms.connection Provides a PlatformTransactionManager implementation for a single JMS ConnectionFactory, and a SingleConnectionFactory adapter. 
org.springframework.orm.hibernate Package providing integration of Hibernate with Spring concepts.  
org.springframework.orm.jdo Package providing integration of JDO with Spring concepts.  
org.springframework.remoting.rmi Remoting classes for conventional RMI and transparent remoting via RMI invokers.  
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.scheduling.timer Scheduling convenience classes for the J2SE Timer, allowing to set up Timers and ScheduledTimerTasks as beans in a Spring context. 
org.springframework.transaction.jta Transaction SPI implementation for JTA. 
org.springframework.web.servlet.mvc Standard controller implementations for the MVC framework that comes with Spring.  
org.springframework.web.servlet.view Provides standard View and ViewResolver implementations, including abstract base classes for custom implementations.  
 

Uses of DisposableBean in org.springframework.aop.target
 

Classes in org.springframework.aop.target that implement DisposableBean
 class AbstractPoolingTargetSource
          Abstract superclass for pooling TargetSources that maintains a pool of target instances, acquiring and releasing a target object from the pool for each method invocation.
 class CommonsPoolTargetSource
          Jakarta Commons pooling implementation extending AbstractPoolingTargetSource.
 class ThreadLocalTargetSource
          Alternative to an object pool.
 

Uses of DisposableBean in org.springframework.beans.factory.support
 

Methods in org.springframework.beans.factory.support with parameters of type DisposableBean
protected  void AbstractBeanFactory.registerDisposableBean(String beanName, DisposableBean bean)
          Add the given bean to the list of further disposable beans in this factory.
 

Uses of DisposableBean in org.springframework.cache.ehcache
 

Classes in org.springframework.cache.ehcache that implement DisposableBean
 class EhCacheManagerFactoryBean
          FactoryBean that exposes a EHCache CacheManager singleton, configured from a specified config location.
 

Uses of DisposableBean in org.springframework.jdbc.datasource
 

Classes in org.springframework.jdbc.datasource that implement DisposableBean
 class SingleConnectionDataSource
          Implementation of SmartDataSource that wraps a single connection which is not closed after use.
 

Uses of DisposableBean in org.springframework.jms.connection
 

Classes in org.springframework.jms.connection that implement DisposableBean
 class SingleConnectionFactory
          A JMS ConnectionFactory adapter that returns the same Connection on all createConnection calls, and ignores calls to close.
 class SingleConnectionFactory102
          A subclass of SingleConnectionFactory that uses the JMS 1.0.2 specification, rather than the JMS 1.1 methods used by SingleConnectionFactory itself.
 

Uses of DisposableBean in org.springframework.orm.hibernate
 

Classes in org.springframework.orm.hibernate that implement DisposableBean
 class LocalSessionFactoryBean
          FactoryBean that creates a local Hibernate SessionFactory instance.
 

Uses of DisposableBean in org.springframework.orm.jdo
 

Classes in org.springframework.orm.jdo that implement DisposableBean
 class LocalPersistenceManagerFactoryBean
          FactoryBean that creates a local JDO PersistenceManager instance.
 

Uses of DisposableBean in org.springframework.remoting.rmi
 

Classes in org.springframework.remoting.rmi that implement DisposableBean
 class JndiRmiServiceExporter
          Service exporter which binds RMI services to JNDI.
 class RmiServiceExporter
          RMI exporter that exposes the specified service as RMI object with the specified name.
 

Uses of DisposableBean in org.springframework.scheduling.quartz
 

Classes in org.springframework.scheduling.quartz that implement DisposableBean
 class SchedulerFactoryBean
          FactoryBean that sets up a Quartz Scheduler and exposes it for bean references.
 

Uses of DisposableBean in org.springframework.scheduling.timer
 

Classes in org.springframework.scheduling.timer that implement DisposableBean
 class TimerFactoryBean
          FactoryBean that sets up a J2SE Timer and exposes it for bean references.
 

Uses of DisposableBean in org.springframework.transaction.jta
 

Classes in org.springframework.transaction.jta that implement DisposableBean
 class JotmFactoryBean
          FactoryBean that retrieves the JTA UserTransaction/TransactionManager for ObjectWeb's JOTM.
 

Uses of DisposableBean in org.springframework.web.servlet.mvc
 

Classes in org.springframework.web.servlet.mvc that implement DisposableBean
 class ServletWrappingController
          Spring Controller implementation that wraps a servlet instance which it manages internally.
 

Uses of DisposableBean in org.springframework.web.servlet.view
 

Classes in org.springframework.web.servlet.view that implement DisposableBean
 class ResourceBundleViewResolver
          Implementation of ViewResolver that uses bean definitions in a ResourceBundle, specified by the bundle basename.
 class XmlViewResolver
          Implementation of ViewResolver that uses bean definitions in an XML file, specified by resource location.
 



Copyright (C) 2003-2004 The Spring Framework Project.