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 the
RefAddr
values of the specified Reference
,
which must match the names and data types of the
BasicDataSource
bean properties.
Constructor | Description |
---|---|
BasicDataSourceFactory() |
Modifier and Type | Method | Description |
---|---|---|
static javax.sql.DataSource |
createDataSource(java.util.Properties properties) |
Creates and configures a
BasicDataSource 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 new
BasicDataSource instance. |
public static javax.sql.DataSource createDataSource(java.util.Properties properties) throws java.lang.Exception
BasicDataSource
instance based on the
given properties.properties
- the datasource configuration propertiesjava.lang.Exception
- if an error occurs creating the data sourcepublic 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, return null
instead.
getObjectInstance
in interface javax.naming.spi.ObjectFactory
obj
- The possibly null object containing location or
reference information that can be used in creating an objectname
- The name of this object relative to nameCtx
nameCtx
- 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 objectjava.lang.Exception
- if an exception occurs creating the instanceCopyright © 2001-2004 Apache Software Foundation. Documenation generated April 15 2019.