How to check spring boot version compatibilty with spring data cosmos db? - spring-data-jpa

I'm struggling to get cosmos db up and running after upgrading spring boot to 2.3.3.
Is there a compatibility chart please ?

Cosmos has support for Spring 2.3.x. There is a helpful getting started guide on the Spring data readme on GitHub that may point to your issue.
https://github.com/Azure/azure-sdk-for-java/tree/master/sdk/cosmos/azure-spring-data-cosmos

Related

Spring boot admin client: Is there planned date for support Spring boot 3.0?

There is no version of Spring boot admin client for Spring boot 3.0. Is there planned release?
I'm trying to monitor my application in Spring boot 3 with Spring boot admin client.
I would like to say, it is brilliant tool and thanks maintainers for their work!
There are milestone releases, currently there is 3.0.0-M8, see https://github.com/codecentric/spring-boot-admin/releases/tag/3.0.0-M8
Some things still need to get fixed and all dependencies must be supporting Spring Boot 3.0 first. But you can already use the milestone and if there is anything missing/broken please provide feeedback via github issues.

which ORM is used with spring boot + mongodb

am working with spring boot + mongodb project and i've been searching lately to know which orm am using but am still confused, i didn't find any clear information, some says hibernate and other says it's Spring Data, even though i know that hibernate works just with MySQL bases but for the NoSQL bases i didn't find any clear information about which ORM am using.
You can use Spring data mongodb.
It's the easiest one to integrate Springboot with mongo.
api("org.springframework.boot:spring-boot-starter-data-mongodb")

Spring batch upgrade from 2.1.x to 4.2.x

we would like our Spring batch to upgrade from version 2.1.x to latest 4.2.x. Initial assessment suggests Spring batch admin manager has been deprecated and replaced by spring cloud data flow. Our organization is not looking for any Spring cloud solutions as heavily invested in other cloud solutions. I am interested to understand on
What is the alternate solution of spring admin manager
High level upgradation steps
Thanks in advance for your assistance in this regard.
Regards
Prashant S

Spring Boot jdbc template and mongoDB

i'm new to Spring Boot so you may say i'm a newbie, so these last few days i've been working on the mongoDB database , so my problem is that i want to use the JDBC template on MongoDB using sts spring boot , i don't know really were to start , is it possible to work with mongoDB and jdbc template ? because i used it on an oracle database?
can you please guys guide me or suggest something , thanks for your help.
Usually in spring-boot I would prefer to use the Repository instead doing stuff via the template.
You should start reading here:
https://spring.io/guides/gs/accessing-data-mongodb/
You could use MongoTemplate but the common way is to extend MongoRepository

Configuring Spring Cloud Stream in Camden.SR5 with Spring boot 1.5.1

First off, thanks to the Spring team for all their work pushing this work forward!
Now that Camden.SR5 is official, I have some questions on how to correctly configure the spring cloud stream kafka binder when using Spring Boot 1.5.1.
Spring boot 1.5.1 has auto configuration for kafka and those configuration options seem to be redundant with those in the spring cloud stream kafka binder.
Do we use the core spring boot properties (spring.kafka.) or do we use (spring.cloud.stream.kafka.binder.)?
I did find this issue, but I am curious if this work will be included in the next Camden release?
https://github.com/spring-cloud/spring-cloud-stream-binder-kafka/issues/73
Additionally, I saw this issue reported on Stack Overflow and I believe it will also be an issue with Camden.SR5?
Failed to start bean 'inputBindingLifecycle' when using spring-boot:1.5.1 and spring-cloud-stream
Thanks
Supporting the Boot 1.5 configuration options is an issue in progress. Also, since dedicated 1.5 support is coming only with Spring Cloud Stream Chelsea release train (which is included in the Dalston release of Spring Cloud), it will be available only there.
Also, when using Spring Cloud Camden with Boot 1.5 you will need to override the Kafka dependencies as described in Failed to start bean 'inputBindingLifecycle' when using spring-boot:1.5.1 and spring-cloud-stream. This will be avoided in future versions of Spring Cloud Stream (and Spring Cloud) but only starting in the Chelsea release train of Spring Cloud Stream (and the Dalston release of Spring Cloud) - see https://github.com/spring-cloud/spring-cloud-stream-binder-kafka/issues/88 for details.