博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springboot连接mongodb的一些问题
阅读量:6481 次
发布时间:2019-06-23

本文共 869 字,大约阅读时间需要 2 分钟。

前言

今天用springboot集成mongodb的时候报了一些错误

第一个

org.springframework.data.mongodb.UncategorizedMongoDbException: Exception authenticating MongoCredential{mechanism=SCRAM-SHA-1, userName='zh',source='main', password=
, mechanismProperties={}}; nested exception iscom.mongodb.MongoSecurityException: Exception authenticatingMongoCredential{mechanism=SCRAM-SHA-1, userName='zh', source='main',password=
, mechanismProperties={}}复制代码

这是我的配置文件

原因很简单,我用idea连接mongodb的插件上发现的,需要指定授权库以及授权机制

解决办法

在uri后面加上 ?authSource=admin&authMechanism=SCRAM-SHA-1

mongodb://user:pwd@host:port/database?main?authSource=admin&authMechanism=SCRAM-SHA-1复制代码

第二个

类型转换问题

我在这里使用了@Id注解 然后报了这个错

org.springframework.core.convert.ConverterNotFoundException: No converter found capable of converting from type [org.bson.types.ObjectId] to type [long]复制代码

这个问题吗,我就懒得想了,直接用json接收了

太懒了!呜呜呜

转载地址:http://rczuo.baihongyu.com/

你可能感兴趣的文章
iOS项目分层
查看>>
IntelliJ IDEA 注册码
查看>>
String字符串的截取
查看>>
Shell编程-环境变量配置文件
查看>>
Struts2和Spring MVC的区别
查看>>
理解Javascript参数中的arguments对象
查看>>
git代码冲突
查看>>
git bash 风格调整
查看>>
linux操作系统加固软件,系统安全:教你Linux操作系统的安全加固
查看>>
linux中yum源安装dhcp,24.Linux系统下动态网络源部署方法(dhcpd)
查看>>
HDOJ-1010 Tempter of the Bone
查看>>
日本开设无人机专业,打造无人机“人才市场”
查看>>
190行代码实现mvvm模式
查看>>
兼容几乎所有浏览器的透明背景效果
查看>>
Linux VNC server的安装及简单配置使用
查看>>
阿里宣布开源Weex ,亿级应用匠心打造跨平台移动开发工具
查看>>
Android项目——实现时间线程源码
查看>>
招商银行信用卡重要通知:消费提醒服务调整,300元以下消费不再逐笔发送短信...
查看>>
C#_delegate - 调用列表
查看>>
[转]Windows的批处理脚本
查看>>