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 with the following exceptions:
connectionInitSqls
must be passed to this factory as a single String using semi-colon to delimit the
statements whereas BasicDataSource
requires a collection of Strings.Constructor and Description |
---|
BasicDataSourceFactory() |
Modifier and Type | Method and Description |
---|---|
static BasicDataSource |
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 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 instancepublic static BasicDataSource createDataSource(java.util.Properties properties) throws java.lang.Exception
BasicDataSource
instance based on the given properties.properties
- The data source configuration properties.BasicDataSource
instance based on the given properties.java.lang.Exception
- Thrown when an error occurs creating the data source.Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.