public class BasicDataSourceFactory extends Object implements ObjectFactory
JNDI object factory that creates an instance of
 BasicDataSource that has been configured based on the
 RefAddr values of the specified Reference,
 which must match the names and data types of the
 BasicDataSource bean properties.
| Constructor and Description | 
|---|
| BasicDataSourceFactory() | 
| Modifier and Type | Method and Description | 
|---|---|
| static DataSource | createDataSource(Properties properties)Creates and configures a  BasicDataSourceinstance based on the
 given properties. | 
| Object | getObjectInstance(Object obj,
                 Name name,
                 Context nameCtx,
                 Hashtable<?,?> environment)Create and return a new  BasicDataSourceinstance. | 
public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable<?,?> environment) throws Exception
Create and return a new BasicDataSource instance.  If no
 instance can be created, return null instead.
getObjectInstance in interface ObjectFactoryobj - The possibly null object containing location or
  reference information that can be used in creating an objectname - The name of this object relative to nameCtxnameCtx - The context relative to which the name
  parameter is specified, or null if name
  is relative to the default initial contextenvironment - The possibly null environment that is used in
  creating this objectException - if an exception occurs creating the instancepublic static DataSource createDataSource(Properties properties) throws Exception
BasicDataSource instance based on the
 given properties.properties - the datasource configuration propertiesException - if an error occurs creating the data sourceCopyright © 2000-2020 Apache Software Foundation. All Rights Reserved.