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.ObjectFactory
JNDI object factory that creates an instance of
BasicDataSource
that has been configured based on theRefAddr
values of the specifiedReference
, which must match the names and data types of theBasicDataSource
bean 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.DataSource
createDataSource(java.util.Properties properties)
Creates and configures aBasicDataSource
instance based on the given properties.java.lang.Object
getObjectInstance(java.lang.Object obj, javax.naming.Name name, javax.naming.Context nameCtx, java.util.Hashtable environment)
Create and return a newBasicDataSource
instance.
-
-
-
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.Exception
Create and return a new
BasicDataSource
instance. If no instance can be created, returnnull
instead.- Specified by:
getObjectInstance
in 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 tonameCtx
nameCtx
- The context relative to which thename
parameter is specified, ornull
ifname
is 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.Exception
Creates and configures aBasicDataSource
instance based on the given properties.- Parameters:
properties
- the datasource configuration properties- Throws:
java.lang.Exception
- if an error occurs creating the data source
-
-