org.apache.commons.dbcp2.datasources
Class SharedPoolDataSourceFactory
- java.lang.Object
-
- org.apache.commons.dbcp2.datasources.SharedPoolDataSourceFactory
-
- All Implemented Interfaces:
- ObjectFactory
public class SharedPoolDataSourceFactory extends Object
A JNDI ObjectFactory which createsSharedPoolDataSource
s- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor and Description SharedPoolDataSourceFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description static void
closeAll()
Closes all pools associated with this class.protected static Object
deserialize(byte[] data)
Sets some properties saved within a Referenceprotected InstanceKeyDataSource
getNewInstance(Reference ref)
Creates an instance of the subclass and sets any properties contained in the Reference.Object
getObjectInstance(Object refObj, Name name, Context context, Hashtable<?,?> env)
Implements ObjectFactory to create an instance of SharedPoolDataSource or PerUserPoolDataSourceprotected boolean
isCorrectClass(String className)
-
-
-
Constructor Detail
-
SharedPoolDataSourceFactory
public SharedPoolDataSourceFactory()
-
-
Method Detail
-
isCorrectClass
protected boolean isCorrectClass(String className)
- Returns:
- true if and only if className is the value returned from getClass().getName().toString()
-
getNewInstance
protected InstanceKeyDataSource getNewInstance(Reference ref)
Creates an instance of the subclass and sets any properties contained in the Reference.
-
closeAll
public static void closeAll() throws Exception
Closes all pools associated with this class.- Throws:
Exception
- aListException
containing all exceptions thrown byInstanceKeyDataSource.close()
- Since:
- 2.4.0 throws a
ListException
instead of, in 2.3.0 and before, the first exception thrown byInstanceKeyDataSource.close()
. - See Also:
InstanceKeyDataSource.close()
,ListException
-
getObjectInstance
public Object getObjectInstance(Object refObj, Name name, Context context, Hashtable<?,?> env) throws IOException, ClassNotFoundException
Implements ObjectFactory to create an instance of SharedPoolDataSource or PerUserPoolDataSource- Specified by:
getObjectInstance
in interfaceObjectFactory
- Throws:
IOException
ClassNotFoundException
-
deserialize
protected static final Object deserialize(byte[] data) throws IOException, ClassNotFoundException
Sets some properties saved within a Reference- Throws:
IOException
ClassNotFoundException
-
-