which version of spring data couchbase is compatible with sdk 3.x? - spring-boot

My project is on spring boot version 1.5.20.relaease and spring-data-couchbase version is 2.2.20.release. I want to move to sdk 3 then which version of spring boot and spring-data-couchbase I should use ?

Spring Boot 2.3.x or higher
Spring Data Couchbase 4.x
The following versions are defaults:
Spring Boot Spring Data Couchbase Couchbase SDK
2.4.0 (jdk1.8+) 4.1.1 3.0.9
2.6.0 (jdk1.8+) 4.3.0 3.2.3
2.7.8 (jdk1.8+) 4.4.7 3.3.4
3.0.2 (jdk17+) 5.0.1 3.4.1

Related

can we use springboot 3 with apache camel?

I resolve some fixes vulnerabilites in a java application and we have a critical issue https://nvd.nist.gov/vuln/detail/cve-2016-1000027 the point here is the current version of springboot is 2.7.2 and migrate version for use springboot 3.0.0 the camel 3 context not load, Does anyone know if spring boot 3 is compatible with any version of camel3?
Camel 4 will support Spring Boot 3. Until then, I'd recommend upgrading to the latest Spring Boot 2.7.x release.

JHipster: Upgrade Spring Boot to 2.3.2 from 2.1.8 JHipster Still uses 2.1.8

I tried changing JHipster Spring boot app from 2.1.8 to 2.3.2 and it still uses the old version 2.1.8. How do I upgrade to 2.3.2?
JHipster does not support 2.3.x yet, therefore an automatic upgrade is not possible. You can try a manual upgrade by removing the jhipster dependencies bom, such that the boot parent defines all versions and update the boot version to 2.3.2. Keep in mind to read all migration guides for boot 2.1.x -> 2.2.x -> 2.3.x.
Depending on your configuration and used dependencies this might be different.

Facing issue while upgrading from Spring Boot 1.x to Spring Boot 2.x

I have an already existing SpringBoot 1.x application which is using Java 7.I want to upgrade spring boot version from 1.x to 2.x.
For up gradation I have upgraded java version from 1.7 to 1.8 in maven pom.xml.
In existing application I am using apache log4j(org.apache.log4j.*) for logging purpose.Getting compilation error for log4j after up gradation.
Thanks in advance.
As of Spring Boot 1.4, the log4j (1.x) starter module is no longer available:
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.4-Release-Notes#deprecations-from-spring-boot-13
You can either switch to log4j2 (which still has a starter module) or you'll have to manually provide the log4j dependencies 1.x in your POM.

Which version spring security is compatible with spring framework 3.2.6 maven

I work in a project with Spring framework 3.2.6 and I now have to use spring security. I don't know what version spring security is compatible with spring framework 3.2.6
spring-security 3.2.0 is compatible with spring framework 3.2.6
https://mvnrepository.com/artifact/org.springframework.security/spring-security-core/3.2.0.RELEASE

Spring boot and cloudfoundry compatibility

What is the highest version of spring boot that can be used which is compatible with cloud foundry?
Is there any issue with 1.4.1 with cloudfoundry?
i have tested the application using 1.3.8 and that works.
What buildpacks version are needed?
Spring Boot 1.3 and earlier will work with any version of the Cloud Foundry Java Buildpack. Boot 1.4 and later require Java Buildpack 3.8 or later.

Resources