I made work it through add dependency ( gradle project)
dependencies {
...
implementation("org.zalando:logbook-spring-boot-webflux-autoconfigure:2.5.0")
}
and plugins (because that autoconfigure requires not less than 2.4.2 boot version)
id("org.springframework.boot") version "2.4.2" apply false
id("io.spring.dependency-management") version "1.0.11.RELEASE"
It is convenient and nothing more I must to do except add dependencies. But it is not usable because of failing pipelines on my gitlab(I have no idea why).
Is there any example how to use logbook without logbook-spring-boot-webflux-autoconfigure dependency to log spring-webflux requests/responses step by step? for example for plugins (with them I am ok)
plugins {
id("org.springframework.boot") version "2.2.4.RELEASE"
id("io.spring.dependency-management") version "1.0.9.RELEASE"
}
Thank you!
I solved my problem. Here config class
application.yml
and dependencies (part)
and now I can stay on the old version of spring boot