Query/Question
I tried to use spring cosmos 3.5.1 in spring boot 2.2 but getting NoClassDefFoundError: reactor.util.context.ContextView.
if incase of updating the spring boot is only way or any way without updating spring boot because of i need to use spring boot 2.2 version
and also there 3.4.0 auditing bug where it will not update createdate and createdby.
Why is this not a Bug or a feature Request?
a kinda query
Setup (please complete the following information if applicable):
spring-boot: 2.2.9.RELEASE managed reactor-core version: 3.3.8.RELEASE.
Refs:
azure-spring-data-cosmos: 3.5.0 required reactor-core version: 3.4.3.
Refs:
My suggestion:
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.4.3</version>
</dependency>
If problem still exists after the 2 solutions, please share your pom.xml.
Thanks fixed this issue by adding bom
mavenBom "io.projectreactor:reactor-bom:2020.0.4"
and netty dependeciey
compile "io.projectreactor.netty:reactor-netty-core:1.0.4"
Most helpful comment
Thanks fixed this issue by adding bom
mavenBom "io.projectreactor:reactor-bom:2020.0.4"
and netty dependeciey
compile "io.projectreactor.netty:reactor-netty-core:1.0.4"