Package org.apache.commons.dbcp
Class BasicDataSourceFactory
- java.lang.Object
-
- org.apache.commons.dbcp.BasicDataSourceFactory
-
- All Implemented Interfaces:
javax.naming.spi.ObjectFactory
public class BasicDataSourceFactory extends java.lang.Object implements javax.naming.spi.ObjectFactoryJNDI object factory that creates an instance of
BasicDataSourcethat has been configured based on theRefAddrvalues of the specifiedReference, which must match the names and data types of theBasicDataSourcebean properties.- Version:
- $Revision: 828639 $ $Date: 2009-10-22 06:27:43 -0400 (Thu, 22 Oct 2009) $
- Author:
- Craig R. McClanahan, Dirk Verbeeck
-
-
Constructor Summary
Constructors Constructor Description BasicDataSourceFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static javax.sql.DataSourcecreateDataSource(java.util.Properties properties)Creates and configures aBasicDataSourceinstance based on the given properties.java.lang.ObjectgetObjectInstance(java.lang.Object obj, javax.naming.Name name, javax.naming.Context nameCtx, java.util.Hashtable environment)Create and return a newBasicDataSourceinstance.
-
-
-
Method Detail
-
getObjectInstance
public java.lang.Object getObjectInstance(java.lang.Object obj, javax.naming.Name name, javax.naming.Context nameCtx, java.util.Hashtable environment) throws java.lang.ExceptionCreate and return a new
BasicDataSourceinstance. If no instance can be created, returnnullinstead.- Specified by:
getObjectInstancein interfacejavax.naming.spi.ObjectFactory- Parameters:
obj- The possibly null object containing location or reference information that can be used in creating an objectname- The name of this object relative tonameCtxnameCtx- The context relative to which thenameparameter is specified, ornullifnameis relative to the default initial contextenvironment- The possibly null environment that is used in creating this object- Throws:
java.lang.Exception- if an exception occurs creating the instance
-
createDataSource
public static javax.sql.DataSource createDataSource(java.util.Properties properties) throws java.lang.ExceptionCreates and configures aBasicDataSourceinstance based on the given properties.- Parameters:
properties- the datasource configuration properties- Throws:
java.lang.Exception- if an error occurs creating the data source
-
-