Package | Description |
---|---|
org.axonframework.common.jdbc | |
org.axonframework.eventhandling.tokenstore.jdbc | |
org.axonframework.eventsourcing.eventstore.jdbc |
JDBC Implementation of the EventStore.
|
org.axonframework.modelling.saga.repository.jdbc | |
org.axonframework.spring.jdbc | |
org.axonframework.springboot.autoconfig |
Modifier and Type | Class and Description |
---|---|
class |
DataSourceConnectionProvider
ConnectionProvider implementation that obtains a connection from a given DataSource.
|
class |
UnitOfWorkAwareConnectionProviderWrapper
Wrapper for a ConnectionProvider that checks if a connection is already attached to the Unit of Work, favoring that
connection over creating a new one.
|
Constructor and Description |
---|
UnitOfWorkAwareConnectionProviderWrapper(ConnectionProvider delegate)
Initializes a ConnectionProvider, using given
delegate to create a new instance, when on is not
already attached to the Unit of Work. |
Modifier and Type | Method and Description |
---|---|
JdbcTokenStore.Builder |
JdbcTokenStore.Builder.connectionProvider(ConnectionProvider connectionProvider)
Sets the
ConnectionProvider used to provide connections to the underlying database. |
Modifier and Type | Method and Description |
---|---|
JdbcEventStorageEngine.Builder |
JdbcEventStorageEngine.Builder.connectionProvider(ConnectionProvider connectionProvider)
Sets the
ConnectionProvider which provides access to a JDBC connection. |
Modifier and Type | Method and Description |
---|---|
JdbcSagaStore.Builder |
JdbcSagaStore.Builder.connectionProvider(ConnectionProvider connectionProvider)
Sets the
ConnectionProvider which provides access to a JDBC connection. |
Modifier and Type | Class and Description |
---|---|
class |
SpringDataSourceConnectionProvider
ConnectionProvider implementation that is aware of Transaction Managers and provides the connection attached to an
active transaction manager, instead of asking a Data Source directly.
|
Modifier and Type | Method and Description |
---|---|
ConnectionProvider |
JdbcAutoConfiguration.connectionProvider(DataSource dataSource) |
Modifier and Type | Method and Description |
---|---|
EventStorageEngine |
JdbcAutoConfiguration.eventStorageEngine(Serializer defaultSerializer,
PersistenceExceptionResolver persistenceExceptionResolver,
Serializer eventSerializer,
AxonConfiguration configuration,
ConnectionProvider connectionProvider,
TransactionManager transactionManager) |
JdbcSagaStore |
JdbcAutoConfiguration.sagaStore(ConnectionProvider connectionProvider,
Serializer serializer) |
TokenStore |
JdbcAutoConfiguration.tokenStore(ConnectionProvider connectionProvider,
Serializer serializer) |
Copyright © 2010–2019. All rights reserved.