Możesz wyłączyć automatyczną konfigurację MongoDB przez Spring Boot, dodając następującą adnotację do swoich ApplicationTests
klasa:
@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class, MongoDataAutoConfiguration.class})
Uniemożliwi to Spring Boot utworzenie MongoClient (zakładając, że nie ma innych klasy w kontekście testowym z adnotacją @EnableAutoConfiguration
lub @SpringBootApplication
).