MongoDB Related Common Errors and Fixes
1) java.lang.NoClassDefFoundError: com/mongodb/connection/BufferProvider
Fix: Need to add the following 3 jar's in class path of ur eclipse project
- mongodb-driver-x.x.x.jar
- mongodb-driver-core-x.x.x.jar (this is the main reason for this error)
- bson-x.x.x.jar
Fix: Need to add the following 3 jar's in class path of ur eclipse project
- mongodb-driver-x.x.x.jar
- mongodb-driver-core-x.x.x.jar (this is the main reason for this error)
- bson-x.x.x.jar
Comments
Post a Comment