Package | Description |
---|---|
org.infinispan.persistence.jdbc |
This package contains a
AdvancedLoadWriteStore implementation based on
a JDBC database connection. |
org.infinispan.persistence.jdbc.binary |
This JDBC CacheStore implementation is optimized for storing binary (non-String)
keys in the cache.
|
org.infinispan.persistence.jdbc.configuration | |
org.infinispan.persistence.jdbc.connectionfactory |
Connection factories for use with the JDBC Cache Store.
|
org.infinispan.persistence.jdbc.mixed |
This is a delegating CacheStore implementation that delegates either to a binary
or String based JDBC cache store depending on the key used.
|
org.infinispan.persistence.jdbc.stringbased |
This JDBC CacheStore implementation is optimized for storing String
keys in the cache.
|
Modifier and Type | Method and Description |
---|---|
void |
TableManipulation.start(ConnectionFactory connectionFactory) |
Modifier and Type | Method and Description |
---|---|
ConnectionFactory |
JdbcBinaryStore.getConnectionFactory() |
Modifier and Type | Method and Description |
---|---|
void |
JdbcBinaryStore.doConnectionFactoryInitialization(ConnectionFactory connectionFactory) |
Modifier and Type | Method and Description |
---|---|
Class<? extends ConnectionFactory> |
ConnectionFactoryConfiguration.connectionFactoryClass() |
Class<? extends ConnectionFactory> |
SimpleConnectionFactoryConfiguration.connectionFactoryClass() |
Class<? extends ConnectionFactory> |
PooledConnectionFactoryConfiguration.connectionFactoryClass() |
Class<? extends ConnectionFactory> |
ManagedConnectionFactoryConfiguration.connectionFactoryClass() |
Modifier and Type | Class and Description |
---|---|
class |
ManagedConnectionFactory
Connection factory that can be used when on managed environments, like application servers.
|
class |
PooledConnectionFactory
Pooled connection factory based on C3P0.
|
class |
SimpleConnectionFactory
Connection factory implementation that will create database connection on a per invocation basis.
|
Modifier and Type | Method and Description |
---|---|
static ConnectionFactory |
ConnectionFactory.getConnectionFactory(Class<? extends ConnectionFactory> connectionFactoryClass)
Constructs a
ConnectionFactory based on the supplied class
name. |
static ConnectionFactory |
ConnectionFactory.getConnectionFactory(String connectionFactoryClass,
ClassLoader classLoader)
Constructs a
ConnectionFactory based on the supplied class
name. |
Modifier and Type | Method and Description |
---|---|
static ConnectionFactory |
ConnectionFactory.getConnectionFactory(Class<? extends ConnectionFactory> connectionFactoryClass)
Constructs a
ConnectionFactory based on the supplied class
name. |
Modifier and Type | Method and Description |
---|---|
ConnectionFactory |
JdbcMixedStore.getConnectionFactory() |
Modifier and Type | Method and Description |
---|---|
ConnectionFactory |
JdbcStringBasedStore.getConnectionFactory() |
Modifier and Type | Method and Description |
---|---|
void |
JdbcStringBasedStore.initializeConnectionFactory(ConnectionFactory connectionFactory)
Keeps a reference to the connection factory for further use.
|
Copyright © 2014 JBoss, a division of Red Hat. All Rights Reserved.