| java.lang.Object org.apache.commons.dbcp.BasicDataSourceFactory
BasicDataSourceFactory | public class BasicDataSourceFactory implements ObjectFactory(Code) | | 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.
author: Craig R. McClanahan author: Dirk Verbeeck version: $Revision: 491655 $ $Date: 2007-01-01 15:05:30 -0700 (Mon, 01 Jan 2007) $ |
createDataSource | public static DataSource createDataSource(Properties properties) throws Exception(Code) | | Creates and configures a
BasicDataSource instance based on the
given properties.
Parameters: properties - the datasource configuration properties throws: Exception - if an error occurs creating the data source |
getObjectInstance | public Object getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable environment) throws Exception(Code) | | Create and return a new BasicDataSource instance. If no
instance can be created, return null instead.
Parameters: obj - The possibly null object containing location orreference information that can be used in creating an object Parameters: name - The name of this object relative to nameCtx Parameters: nameCtx - The context relative to which the name parameter is specified, or null if name is relative to the default initial context Parameters: environment - The possibly null environment that is used increating this object exception: Exception - if an exception occurs creating the instance |
|
|