Add reactive transaction support SPI

This commit adds SPI interfaces to support reactive transactions
through spring-tx with optional dependencies to Project Reactor and
supportive implementations for TransactionalOperator and
AbstractReactiveTransactionManager.
This commit is contained in:
Mark Paluch
2019-03-22 16:09:30 +02:00
committed by Juergen Hoeller
parent cee7d09e40
commit beea83b9d2
20 changed files with 3891 additions and 0 deletions

View File

@@ -1,5 +1,11 @@
description = "Spring Transaction"
dependencyManagement {
imports {
mavenBom "io.projectreactor:reactor-bom:${reactorVersion}"
}
}
dependencies {
compile(project(":spring-beans"))
compile(project(":spring-core"))
@@ -10,8 +16,10 @@ dependencies {
optional("javax.resource:javax.resource-api:1.7.1")
optional("javax.transaction:javax.transaction-api:1.3")
optional("com.ibm.websphere:uow:6.0.2.17")
optional("io.projectreactor:reactor-core")
optional("io.vavr:vavr:0.10.0")
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
testCompile("org.codehaus.groovy:groovy:${groovyVersion}")
testCompile("org.eclipse.persistence:javax.persistence:2.2.0")
testCompile("io.projectreactor:reactor-test")
}