|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use InitializingBean | |
org.springframework.aop.target | This package contains implementations of the org.springframework.aop.TargetSource interface. |
org.springframework.beans.factory.config | SPI interfaces and configuration-related convenience classes for bean factories. |
org.springframework.ejb.access | This package contains classes that allow easy access to EJBs. |
org.springframework.jdbc.core | Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects. |
org.springframework.jdbc.core.support | Classes supporting the org.springframework.jdbc.core package. |
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.object | The classes in this package represent RDBMS queries, updates, and stored procedures as threadsafe, reusable objects. |
org.springframework.jdbc.support | Support classes for the JDBC framework, used by the classes in the jdbc.core and jdbc.object packages. |
org.springframework.jdbc.support.incrementer | Provides a support framework for incrementing database table values via sequences, with implementations for various databases. |
org.springframework.jndi | The classes in this package make JNDI easier to use, facilitating the accessing of configuration stored in JNDI, and provide useful superclasses for JNDI access classes. |
org.springframework.orm.hibernate | Package providing integration of Hibernate with Spring concepts. |
org.springframework.orm.hibernate.support | Classes supporting the org.springframework.orm.hibernate package. |
org.springframework.orm.ibatis | Package providing integration of iBATIS Database Layer with Spring concepts. |
org.springframework.orm.ibatis.support | Classes supporting the org.springframework.orm.ibatis package. |
org.springframework.orm.jdo | Package providing integration of JDO with Spring concepts. |
org.springframework.orm.jdo.support | Classes supporting the org.springframework.orm.jdo package. |
org.springframework.remoting.caucho | This package provides remoting classes for Caucho's Hessian and Burlap protocols: a proxy factory for accessing Hessian/Burlap services, and an exporter for making beans available to Hessian/Burlap clients. |
org.springframework.remoting.jaxrpc | Remoting classes for Web Services via JAX-RPC. |
org.springframework.remoting.rmi | Remoting classes for conventional RMI and transparent remoting via RMI invokers. |
org.springframework.remoting.support | Support classes for remoting implementations. |
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.interceptor | AOP-based solution for declarative transaction demarcation. |
org.springframework.transaction.jta | Transaction SPI implementation for JTA. |
org.springframework.transaction.support | Support classes for the org.springframework.transaction package. |
org.springframework.ui.freemarker | Support classes for setting up FreeMarker within a Spring application context. |
org.springframework.ui.velocity | Support classes for setting up Velocity within a Spring application context. |
org.springframework.web.servlet.mvc.multiaction | Package allowing MVC Controller implementations to handle requests at method rather than class level. |
org.springframework.web.servlet.view.freemarker | Support classes for the integration of FreeMarker as Spring web view technology. |
org.springframework.web.servlet.view.velocity | Support classes for the integration of Velocity as Spring web view technology. |
Uses of InitializingBean in org.springframework.aop.target |
Classes in org.springframework.aop.target that implement InitializingBean | |
class |
AbstractPoolingTargetSource
Abstract uperclass for pooling TargetSources that maintains a pool of target instances, acquiring and releasing a target object from the pool for each method invocation. |
class |
AbstractPrototypeTargetSource
Base class for dynamic TargetSources that can create new prototype bean instances to support a pooling or new-instance-per-invocation strategy. |
class |
CommonsPoolTargetSource
Jakarta Commons pooling implementation extending AbstractPoolingInvokerInterceptor |
class |
PrototypeTargetSource
TargetSource that creates a new instance of the target bean for each request. |
class |
ThreadLocalTargetSource
Alternative to an object pool. |
Uses of InitializingBean in org.springframework.beans.factory.config |
Classes in org.springframework.beans.factory.config that implement InitializingBean | |
class |
ListFactoryBean
Simple factory for shared List instances. |
class |
MapFactoryBean
Simple factory for shared Map instances. |
class |
MethodInvokingFactoryBean
FactoryBean which returns a value which is the result of a static or instance method invocation. |
class |
PreferencesPlaceholderConfigurer
Subclass of PropertyPlaceholderConfigurer that supports J2SE 1.4's Preferences API (java.util.prefs). |
class |
PropertiesFactoryBean
Allows for making a properties file from a classpath location available as Properties instance in a bean factory. |
class |
SetFactoryBean
Simple factory for shared Set instances. |
Uses of InitializingBean in org.springframework.ejb.access |
Classes in org.springframework.ejb.access that implement InitializingBean | |
class |
AbstractRemoteSlsbInvokerInterceptor
Superclass for interceptors proxying remote Stateless Session Beans. |
class |
AbstractSlsbInvokerInterceptor
Superclass for AOP interceptors invoking remote or local Stateless Session Beans. |
class |
LocalSlsbInvokerInterceptor
Invoker for a local Stateless Session Bean. |
class |
LocalStatelessSessionProxyFactoryBean
Convenient factory for local Stateless Session Bean (SLSB) proxies. |
class |
SimpleRemoteSlsbInvokerInterceptor
Basic invoker for a remote Stateless Session Bean. |
class |
SimpleRemoteStatelessSessionProxyFactoryBean
Convenient factory for remote SLSB proxies. |
Uses of InitializingBean in org.springframework.jdbc.core |
Classes in org.springframework.jdbc.core that implement InitializingBean | |
class |
JdbcTemplate
This is the central class in the JDBC core package. It simplifies the use of JDBC and helps to avoid common errors. |
Uses of InitializingBean in org.springframework.jdbc.core.support |
Classes in org.springframework.jdbc.core.support that implement InitializingBean | |
class |
JdbcDaoSupport
Convenient super class for JDBC data access objects. |
Uses of InitializingBean in org.springframework.jdbc.datasource |
Classes in org.springframework.jdbc.datasource that implement InitializingBean | |
class |
DataSourceTransactionManager
PlatformTransactionManager implementation for single JDBC data sources. |
Uses of InitializingBean in org.springframework.jdbc.object |
Classes in org.springframework.jdbc.object that implement InitializingBean | |
class |
MappingSqlQuery
Reusable query in which concrete subclasses must implement the abstract mapRow(ResultSet, int) method to convert each row of the JDBC ResultSet into an object. |
class |
MappingSqlQueryWithParameters
Reusable RDBMS query in which concrete subclasses must implement the abstract mapRow(ResultSet, int) method to map each row of the JDBC ResultSet into an object. |
class |
RdbmsOperation
Root of the JDBC object hierarchy, as described in Chapter 9 of Expert One-On-One J2EE Design and Development by Rod Johnson (Wrox, 2002). |
class |
SqlCall
RdbmsOperation using a JdbcTemplate and representing a SQL-based call such as a stored procedure or a stored function. |
class |
SqlFunction
SQL "function" wrapper for a query that returns a single row of results. |
class |
SqlOperation
RdbmsOperation using a JdbcTemplate and representing a SQL-based operation such as a query or update, as opposed to a stored procedure. |
class |
SqlQuery
Reusable threadsafe object to represent a SQL query. |
class |
SqlUpdate
RdbmsOperation subclass representing a SQL update. |
class |
StoredProcedure
Superclass for object abstractions of RDBMS stored procedures. |
class |
UpdatableSqlQuery
Reusable RDBMS query in which concrete subclasses must implement the abstract updateRow(ResultSet, int, context) method to update each row of the JDBC ResultSet and optionally map contents into an object. |
Uses of InitializingBean in org.springframework.jdbc.support |
Classes in org.springframework.jdbc.support that implement InitializingBean | |
class |
DatabaseStartupValidator
Bean that checks if a database has already started up. |
Uses of InitializingBean in org.springframework.jdbc.support.incrementer |
Classes in org.springframework.jdbc.support.incrementer that implement InitializingBean | |
class |
AbstractDataFieldMaxValueIncrementer
Implementation of DataFieldMaxValueIncrementer that delegates to a single getNextKey template method that returns a long. |
class |
AbstractSequenceMaxValueIncrementer
Abstract base class for incrementers that use a database sequence. |
class |
HsqlMaxValueIncrementer
Class to increment maximum value of a given HSQL table with the equivalent of an auto-increment column. |
class |
MySQLMaxValueIncrementer
Class to increment maximum value of a given MySQL table with the equivalent of an auto-increment column. |
class |
OracleSequenceMaxValueIncrementer
Class to retrieve the next value of a given Oracle Sequence. |
class |
PostgreSQLSequenceMaxValueIncrementer
Class to retrieve the next value of a given PostgreSQL Sequence. |
Uses of InitializingBean in org.springframework.jndi |
Classes in org.springframework.jndi that implement InitializingBean | |
class |
AbstractJndiLocator
Convenient superclass for JNDI-based Service Locators. |
class |
JndiObjectFactoryBean
FactoryBean that looks up a JNDI object. |
Uses of InitializingBean in org.springframework.orm.hibernate |
Classes in org.springframework.orm.hibernate that implement InitializingBean | |
class |
HibernateAccessor
Base class for HibernateTemplate and HibernateInterceptor, defining common properties like flushing behavior. |
class |
HibernateInterceptor
This interceptor binds a new Hibernate Session to the thread before a method call, closing and removing it afterwards in case of any method outcome. |
class |
HibernateTemplate
Helper class that simplifies Hibernate data access code, and converts checked HibernateExceptions into unchecked DataAccessExceptions, compatible to the org.springframework.dao exception hierarchy. |
class |
HibernateTransactionManager
PlatformTransactionManager implementation for single Hibernate session factories. |
class |
LocalSessionFactoryBean
FactoryBean that creates a local Hibernate SessionFactory instance. |
Uses of InitializingBean in org.springframework.orm.hibernate.support |
Classes in org.springframework.orm.hibernate.support that implement InitializingBean | |
class |
HibernateDaoSupport
Convenient super class for Hibernate data access objects. |
class |
OpenSessionInViewInterceptor
Spring web HandlerInterceptor that binds a Hibernate Session to the thread for the whole processing of the request. |
Uses of InitializingBean in org.springframework.orm.ibatis |
Classes in org.springframework.orm.ibatis that implement InitializingBean | |
class |
SqlMapClientFactoryBean
FactoryBean that creates an iBATIS Database Layer SqlMapClient as singleton in the current bean factory, possibly for use with SqlMapClientTemplate. |
class |
SqlMapFactoryBean
FactoryBean that creates an iBATIS Database Layer SqlMap as singleton in the current bean factory, possibly for use with SqlMapTemplate. |
Uses of InitializingBean in org.springframework.orm.ibatis.support |
Classes in org.springframework.orm.ibatis.support that implement InitializingBean | |
class |
SqlMapClientDaoSupport
Convenient super class for iBATIS SqlMapClient data access objects. |
Uses of InitializingBean in org.springframework.orm.jdo |
Classes in org.springframework.orm.jdo that implement InitializingBean | |
class |
JdoAccessor
Base class for JdoTemplate and JdoInterceptor, defining common properties like flushing behavior. |
class |
JdoInterceptor
This interceptor binds a new JDO PersistenceManager to the thread before a method call, closing and removing it afterwards in case of any method outcome. |
class |
JdoTemplate
Helper class that simplifies JDO data access code, and converts JDOExceptions into JdoUsage/JdoSystemException, compatible to the org.springframework.dao exception hierarchy. |
class |
JdoTransactionManager
PlatformTransactionManager implementation for single JDO persistence manager factories. |
class |
LocalPersistenceManagerFactoryBean
FactoryBean that creates a local JDO PersistenceManager instance. |
Uses of InitializingBean in org.springframework.orm.jdo.support |
Classes in org.springframework.orm.jdo.support that implement InitializingBean | |
class |
JdoDaoSupport
Convenient super class for JDO data access objects. |
Uses of InitializingBean in org.springframework.remoting.caucho |
Classes in org.springframework.remoting.caucho that implement InitializingBean | |
class |
BurlapClientInterceptor
Interceptor for accessing a Burlap service. |
class |
BurlapProxyFactoryBean
Factory bean for Burlap proxies. |
class |
BurlapServiceExporter
Web controller that exports the specified service bean as Burlap service endpoint, accessible via a Burlap proxy. |
class |
HessianClientInterceptor
Interceptor for accessing a Hessian service. |
class |
HessianProxyFactoryBean
Factory bean for Hessian proxies. |
class |
HessianServiceExporter
Web controller that exports the specified service bean as Hessian service endpoint, accessible via a Hessian proxy. |
Uses of InitializingBean in org.springframework.remoting.jaxrpc |
Classes in org.springframework.remoting.jaxrpc that implement InitializingBean | |
class |
JaxRpcPortClientInterceptor
Interceptor for accessing a specific port of a JAX-RPC service. |
class |
JaxRpcPortProxyFactoryBean
FactoryBean for a specific port of a JAX-RPC service. |
class |
LocalJaxRpcServiceFactoryBean
FactoryBean for locally defined JAX-RPC Service references. |
Uses of InitializingBean in org.springframework.remoting.rmi |
Classes in org.springframework.remoting.rmi that implement InitializingBean | |
class |
RmiClientInterceptor
Interceptor for accessing conventional RMI services or RMI invokers. |
class |
RmiProxyFactoryBean
Factory bean for RMI proxies, supporting both conventional RMI services and RMI invokers. |
class |
RmiServiceExporter
RMI exporter that exposes the specified service as RMI object with the specified name. |
Uses of InitializingBean in org.springframework.remoting.support |
Classes in org.springframework.remoting.support that implement InitializingBean | |
class |
RemoteExporter
Abstract base class for classes that export a remote service. |
Uses of InitializingBean in org.springframework.scheduling.quartz |
Classes in org.springframework.scheduling.quartz that implement InitializingBean | |
class |
CronTriggerBean
Convenience subclass of Quartz' CronTrigger class that eases bean-style usage. |
class |
JobDetailBean
Convenience subclass of Quartz' JobDetail class that eases bean-style usage. |
class |
MethodInvokingJobDetailFactoryBean
FactoryBean that exposes a JobDetail object that delegates job execution to a specified (static or non-static) method. |
class |
SchedulerFactoryBean
FactoryBean that sets up a Quartz Scheduler and exposes it for bean references. |
class |
SimpleTriggerBean
Convenience subclass of Quartz' SimpleTrigger class that eases bean-style usage. |
Uses of InitializingBean in org.springframework.scheduling.timer |
Classes in org.springframework.scheduling.timer that implement InitializingBean | |
class |
MethodInvokingTimerTaskFactoryBean
FactoryBean that exposes a TimerTask object that delegates job execution to a specified (static or non-static) method. |
class |
TimerFactoryBean
FactoryBean that sets up a J2SE Timer and exposes it for bean references. |
Uses of InitializingBean in org.springframework.transaction.interceptor |
Classes in org.springframework.transaction.interceptor that implement InitializingBean | |
class |
TransactionInterceptor
Interceptor providing declarative transaction management using the common Spring transaction infrastructure. |
class |
TransactionProxyFactoryBean
Proxy factory bean for simplified declarative transaction handling. |
Uses of InitializingBean in org.springframework.transaction.jta |
Classes in org.springframework.transaction.jta that implement InitializingBean | |
class |
JtaTransactionManager
PlatformTransactionManager implementation for JTA, i.e. |
Uses of InitializingBean in org.springframework.transaction.support |
Classes in org.springframework.transaction.support that implement InitializingBean | |
class |
TransactionTemplate
Helper class that simplifies programmatic transaction demarcation and transaction exception handling. |
Uses of InitializingBean in org.springframework.ui.freemarker |
Classes in org.springframework.ui.freemarker that implement InitializingBean | |
class |
FreeMarkerConfigurationFactoryBean
Factory bean that creates a FreeMarker Configuration and provides it as bean reference. |
Uses of InitializingBean in org.springframework.ui.velocity |
Classes in org.springframework.ui.velocity that implement InitializingBean | |
class |
VelocityEngineFactoryBean
Factory bean that configures a VelocityEngine and provides it as bean reference. |
Uses of InitializingBean in org.springframework.web.servlet.mvc.multiaction |
Classes in org.springframework.web.servlet.mvc.multiaction that implement InitializingBean | |
class |
PropertiesMethodNameResolver
The most sophisticated and useful framework implementation of the MethodNameResolver interface. |
Uses of InitializingBean in org.springframework.web.servlet.view.freemarker |
Classes in org.springframework.web.servlet.view.freemarker that implement InitializingBean | |
class |
FreeMarkerConfigurer
JavaBean to configure FreeMarker for web usage, via the "configLocation" and/or "freemarkerSettings" and/or "templateLoaderPath" properties. |
Uses of InitializingBean in org.springframework.web.servlet.view.velocity |
Classes in org.springframework.web.servlet.view.velocity that implement InitializingBean | |
class |
VelocityConfigurer
JavaBean to configure Velocity for web usage, via the "configLocation" and/or "velocityProperties" and/or "resourceLoaderPath" bean properties. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |