Совместимость с версией весеннего облака, r2dbc
Я пытаюсь использовать весну с r2dbc
вот мой build.gradle
plugins {
id 'org.springframework.boot' version '2.2.0.M4'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
ext {
set('springCloudVersion', "Greenwich.SR2")
}
dependencies {
compile('io.jsonwebtoken:jjwt:0.9.1')
//implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.cloud:spring-cloud-starter-gateway'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
//runtime 'io.r2dbc:r2dbc-pool:0.8.0.M8'
implementation 'io.r2dbc:r2dbc-postgresql:1.0.0.M7'
compile 'io.r2dbc:r2dbc-pool:1.0.0.BUILD-SNAPSHOT'
implementation 'org.springframework.boot.experimental:spring-boot-starter-r2dbc:0.1.0.M1'
implementation 'org.springframework.boot.experimental:spring-boot-starter-data-r2dbc:0.1.0.M1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.springframework.security:spring-security-test'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
Когда вызов сделан, чтобы найти все хранилище, эта ошибка произойдет
java.lang.NoSuchMethodError: org.springframework.transaction.reactive.TransactionSynchronizationManager.currentTransaction()Lreactor/core/publisher/Mono;
Обновление версии до моментального снимка устраняет проблему транзакции
1 ответ
Вопрос в М1 spring-data-r2dbc
предоставлено 0.1.0.M1
из spring-boot-starter-data-r2dbc
- вместо этого вам нужно будет использовать сборки снимков.
Так что поменяйте:
implementation 'org.springframework.boot.experimental:spring-boot-starter-data-r2dbc:0.1.0.M1'
чтобы:
implementation 'org.springframework.boot.experimental:spring-boot-starter-data-r2dbc:0.1.0.BUILD-SNAPSHOT'
... и тебе надо идти.
Стоит отметить, что, по крайней мере, на момент написания релятивно-реактивный материал (основанный на r2dbc) является очень перспективным и совсем не пригодным для использования в производстве; естественным следствием этого является то, что сборки моментальных снимков время от времени обходят ошибки и нестабильности. Это, вероятно, изменится в будущем.