spring 无法将MongoDB Atlas集群连接到Sping Boot 应用程序

c9x0cxw0  于 2022-11-21  发布在  Spring
关注(0)|答案(1)|浏览(115)

当尝试仅确保连接正常工作时,会出现此错误。
Error that pops up
这是连接字符串Connection string
这是我的aapp.properties网站

spring.data.mongodb.uri=mongodb+srv://jamescervamtes:jamescervantes@theshop.rmeawrn.mongodb.net/TheShop
spring.data.mongodb.database=TheShop

我尝试了一切,我只是期待应用程序正在运行,向我显示连接到mongo是成功的

编辑:

这是Map集UI
Atlas Ui

w8f9ii69

w8f9ii691#

您的连接URL与atlas控制台中列出的URL不同。
请尝试将属性设置为:

spring:
  data:
    mongodb:
      uri: mongodb+srv://theshop.rmeawrn.mongodb.net/?retryWrites=true&w=majority
      username: <username>
      password: <password>
      database: TheShop

另外,我在atlas连接字符串中没有看到引用数据库的任何地方。您确定数据库(TheShop)存在于此atlas集群上吗?

相关问题