springboot连接mongodb出错

要用springboot连接mongodb,添加一个表,报错:com.mongodb.MongoSecurityException: Exception authenticating MongoCredential{mechanism=null, userName=‘esign_write’, source=‘esign’, password=, mechanismProperties={}}

解决:在application.properties文件中已经配置了mongodb的database, user, password如下:
spring.data.mongodb.host=localhost
spring.data.mongodb.port=27017
spring.data.mongodb.database=nbike
spring.data.mongodb.username=bingo
spring.data.mongodb.password=123456

如果此时授权使用的数据库,用户名,密码与配置的不一样,就会报错,因此在mongodb中添加对应的数据库,用户并授权即可,操作如下红线框中所示,问题解决。

springboot连接mongodb出错_第1张图片springboot连接mongodb出错_第2张图片

你可能感兴趣的:(springboot,mongodb)