我使用mongodb地图集作为我的后端,我试图将它连接到intellij的Mongo Explorer
这是第一张更加详细的图片
这是我提供数据库用户名和密码的第二张图片,但我仍然无法连接。
我很容易连接到localhost而没有任何问题,但这不是连接......
我使用Intellij Idea Ultimate 2017.1.3和学生执照。我认为这个特定的许可证和Ide版本没有问题
提前致谢:)
答案 0 :(得分:1)
这是非常简单的步骤:
在pom.xml文件中添加这些依赖项:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
您要将此代码添加到application.properties文件:
spring.data.mongodb.uri= your_uri_here
spring.data.mongodb.database= database_name_here
答案 1 :(得分:0)
mongodb+srv://admin:<password>@cluster0-shard-00-01-shj3q.mongodb.net/test?retryWrites=true