Package org.apache.tomcat.dbcp.dbcp2
Class BasicDataSourceFactory
- java.lang.Object
-
- org.apache.tomcat.dbcp.dbcp2.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 ofBasicDataSource
that has been configured based on theRefAddr
values of the specifiedReference
, which must match the names and data types of theBasicDataSource
bean properties with the following exceptions:connectionInitSqls
must be passed to this factory as a single String using semicolon to delimit the statements whereasBasicDataSource
requires a collection of Strings.
- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description BasicDataSourceFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BasicDataSource
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)
Creates and return a newBasicDataSource
instance.
-
-
-
Method Detail
-
createDataSource
public static BasicDataSource createDataSource(java.util.Properties properties) throws java.lang.Exception
Creates and configures aBasicDataSource
instance based on the given properties.- Parameters:
properties
- The data source configuration properties.- Returns:
- A new a
BasicDataSource
instance based on the given properties. - Throws:
java.lang.Exception
- Thrown when an error occurs creating the data source.
-
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
Creates and return a newBasicDataSource
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
-
-