skip to Main Content

Mongodb – Error creating bean with name 'mongoDatabaseFactory'

Error creating bean with name 'mongoDatabaseFactory' defined in class path resource [path]: Failed to instantiate [path]: Factory method 'mongoDatabaseFactory' threw exception with message: Database name must not be empty. MoviesApplication.java package dev.jeevan.movies; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class MoviesApplication…

VIEW QUESTION

Redis – Debezium spring boot configuration not able to handle events when there is a change in database

I have the following configuration setup. build.gradle: plugins { id 'java' id 'org.springframework.boot' version '3.1.0-SNAPSHOT' id 'io.spring.dependency-management' version '1.1.0' id 'org.sonarqube' version "4.0.0.2929" id "jacoco" } group = 'com.realtime' version = '0.0.1-SNAPSHOT' sourceCompatibility = '17' configurations { compileOnly { extendsFrom…

VIEW QUESTION
Back To Top
Search