springboot連線mongodb的一些問題

2021-09-24 06:47:52 字數 837 閱讀 2567

今天用springboot整合mongodb的時候報了一些錯誤

org.springframework.data.mongodb.uncategorizedmongodbexception: 

exception authenticating mongocredential}; nested exception is

com.mongodb.mongosecurityexception: exception authenticating

mongocredential}

複製**

這是我的配置檔案

原因很簡單,我用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接收了

太懶了!嗚嗚嗚

SpringBoot連線Redis集群

redis.clients jedis server.port 100 redis集群節點資訊 spring.redis.cluster.nodes 192.168.25.132 6379,192.168.25.132 6380,192.168.25.133 6379,192.168.25.133 ...

spring boot 配置ldaps 連線

package com.github.wxiaoqi.security.common.config import lombok.extern.slf4j.slf4j import org.springframework.beans.factory.annotation.value import or...

在windows server上安裝MongoDB

在windows server上安裝mongodb,建立使用者 讓mongodb對外開放訪問 禁止匿名訪問mongodb 2.伺服器對外開放27017埠,因為mangodb預設使用的就是27017埠 雙擊下一步安裝,注意要選自定義安裝,而且要去掉 installmongodbcompass 四 建立...