skip to Main Content

How to set up azure keyvault for spring boot app?

There was some dependency incompatibility occurring because we were using an older version of azure keyvault (azure-keyvault-secrets-spring-boot-starter 2.2.1) but it got updated and we are upgrading it to azure-spring-boot-starter-keyvault-secrets 4.0.0. Now the keyvault isn't being connected maybe because the application.yml…

VIEW QUESTION

How do I execute a docker container

I created the images locally and created one repository in DockerHub called testName/backend. The docker images command shows the created images. REPOSITORY TAG IMAGE ID CREATED SIZE testName/backend 0.0.1-SNAPSHOT 10fc47e065ff 25 minutes ago 459MB backend 0.0.1-SNAPSHOT 10fc47e065ff 25 minutes ago…

VIEW QUESTION

Programmatic RedissonClient in Spring boot project

I am trying to implement Hibernate second level caching in a Spring boot project using Redisson. I have followed this blog as a reference https://pavankjadda.medium.com/implement-hibernate-2nd-level-cache-with-redis-spring-boot-and-spring-data-jpa-7cdbf5632883 Also i am trying to initialize the RedissionClient programmatically and not through declaratively /through a…

VIEW QUESTION

Boot springboot app even if mongodb is down

I am using SpringBoot v2.7.0 I have following springboot config spring: data: mongodb: uri: ${MONGO_DB_URL} database: ${MONGO_DB_DATABASE} There is not explicit beans configurations. I have repositories for respective documents which extends MongoRepository<ModelNameClass, IDType> This is all working fine. But now…

VIEW QUESTION
Back To Top
Search