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:
committed by
Juergen Hoeller
parent
cee7d09e40
commit
beea83b9d2
@@ -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")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user