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.ObjectFactoryJNDI object factory that creates an instance ofBasicDataSourcethat has been configured based on theRefAddrvalues of the specifiedReference, which must match the names and data types of theBasicDataSourcebean properties with the following exceptions:- connectionInitSqlsmust be passed to this factory as a single String using semicolon to delimit the statements whereas- BasicDataSourcerequires a collection of Strings.
 - Since:
- 2.0
 
- 
- 
Constructor SummaryConstructors Constructor Description BasicDataSourceFactory()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BasicDataSourcecreateDataSource(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)Creates and return a newBasicDataSourceinstance.
 
- 
- 
- 
Method Detail- 
createDataSourcepublic static BasicDataSource createDataSource(java.util.Properties properties) throws java.sql.SQLException Creates and configures aBasicDataSourceinstance based on the given properties.- Parameters:
- properties- The data source configuration properties.
- Returns:
- A new a BasicDataSourceinstance based on the given properties.
- Throws:
- java.sql.SQLException- Thrown when an error occurs creating the data source.
 
 - 
getObjectInstancepublic java.lang.Object getObjectInstance(java.lang.Object obj, javax.naming.Name name, javax.naming.Context nameCtx, java.util.Hashtable<?,?> environment) throws java.sql.SQLExceptionCreates and return a newBasicDataSourceinstance. If no instance can be created, returnnullinstead.- Specified by:
- getObjectInstancein interface- javax.naming.spi.ObjectFactory
- Parameters:
- obj- The possibly null object containing location or reference information that can be used in creating an object
- name- The name of this object relative to- nameCtx
- nameCtx- The context relative to which the- nameparameter is specified, or- nullif- nameis relative to the default initial context
- environment- The possibly null environment that is used in creating this object
- Throws:
- java.sql.SQLException- if an exception occurs creating the instance
 
 
- 
 
-