Ann
Ann

Reputation: 65

java.lang.NoSuchMethodError: com.mongodb.MongoClient.<init>(Ljava/util/List;Lcom/mongodb/MongoCredential;Lcom/mongodb/MongoClientOptions;)V]

While trying to access mongodb from my QA enviornment its showing the below error.

java.lang.NoSuchMethodError: com.mongodb.MongoClient.<init> (Ljava/util/List;Lcom/mongodb/MongoCredential;Lcom/mongodb/MongoClientOptions;)V]

The same is working from my local env. The mongo driver im using in 3.6.2 and java version is 1.8.

Please help

Upvotes: 3

Views: 3311

Answers (1)

Felipe Desiderati
Felipe Desiderati

Reputation: 2982

When I updated to version 3.8.0, it worked. My problem occurred because I've updated the Spring Data Mongo and forgot to update the Mongo Driver.

Upvotes: 1

Related Questions