トランザクション周辺依存関係メモ

            • -
S2JDBCなど -> DataSource [ DataSourceImpl ] DataSourceImpl -> ConnectionPool [ ConnectionPoolImpl ] ConnectionPoolImpl -> XADataSource [ XADataSourceImpl ] XADataSourceImpl -> Connection [ ] XADataSourceImpl -> XAConnectionImpl XAConnectionImpl -> Connection [ ] XAConnectionImpl -> XAResource [ DBXAResourceImpl ] DBXAResourceImpl -> Connection [ ]
            • -
ConnectionPoolImpl -> TransactionManager [ TransactionManagerImpl ] ConnectionPoolImpl -> Transaction [ TransactionImpl ] TransactionManagerImpl -> TransactionImpl TransactionImpl -> Xid [ XidImpl ] TransactionImpl -> XAResource [ XAResourceWrapperImpl ]
            • -
ConnectionPoolImpl -> ConnectionWrapper [ ConnectionWrapperImpl ] ConnectionWrapperImpl -> Connection [ ] ConnectionWrapperImpl -> XAConnection [ XAConnectionImpl ] ConnectionWrapperImpl -> XAResource [ XAResourceWrapperImpl ] ConnectionWrapperImpl -> ConnectionPool [ ConnectionPoolImpl ] ConnectionWrapperImpl -> CallableStatement [ ] ConnectionWrapperImpl -> PreparedStatement [ ] ConnectionWrapperImpl -> Statement [ ]
            • -
DataSourceの実装、TransactionManagerの実装はアプリケーションサーバからJNDIなどで取得可。 @see DataSourceWrapper @see TransactionManagerWrapper