java - Spring boot在添加mongo-java-driver maven依赖时尝试连接mongo

标签 java mongodb maven spring-boot unit-testing

我刚刚添加:

    <dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongo-java-driver</artifactId>
    </dependency>

到我的 Maven Spring Boot 项目。我也有这个测试:

/*
 * Copyright 2016 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package hello;

import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;

@RunWith(SpringRunner.class)
@SpringBootTest
@AutoConfigureMockMvc
public class GreetingControllerTests {

    @Autowired
    private MockMvc mockMvc;

    @Test
    public void noParamGreetingShouldReturnDefaultMessage() throws Exception {

        this.mockMvc.perform(get("/greeting")).andDo(print()).andExpect(status().isOk())
                .andExpect(jsonPath("$.content").value("Hello, World!"));
    }

    @Test
    public void paramGreetingShouldReturnTailoredMessage() throws Exception {

        this.mockMvc.perform(get("/greeting").param("name", "Spring Community"))
                .andDo(print()).andExpect(status().isOk())
                .andExpect(jsonPath("$.content").value("Hello, Spring Community!"));
    }

}

出于某种原因,当我使用 mvn clean package 构建项目时,spring boot 现在尝试连接到 mongodb:

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.1.7.RELEASE)

2019-10-11 20:36:58.418  INFO 14870 --- [           main] hello.GreetingControllerTests            : Starting GreetingControllerTests on user-ThinkPad-X390 with PID 14870 (started by user in /home/user/repos/frontend-backend/backend)
2019-10-11 20:36:58.423  INFO 14870 --- [           main] hello.GreetingControllerTests            : No active profile set, falling back to default profiles: default
2019-10-11 20:36:59.311  INFO 14870 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'
2019-10-11 20:36:59.565  INFO 14870 --- [           main] org.mongodb.driver.cluster               : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-10-11 20:36:59.591  INFO 14870 --- [localhost:27017] org.mongodb.driver.cluster               : Exception in monitor thread while connecting to server localhost:27017

com.mongodb.MongoSocketOpenException: Exception opening socket
    at com.mongodb.internal.connection.SocketStream.open(SocketStream.java:67) ~[mongo-java-driver-3.8.2.jar:na]
    at com.mongodb.internal.connection.InternalStreamConnection.open(InternalStreamConnection.java:126) ~[mongo-java-driver-3.8.2.jar:na]
    at com.mongodb.internal.connection.DefaultServerMonitor$ServerMonitorRunnable.run(DefaultServerMonitor.java:117) ~[mongo-java-driver-3.8.2.jar:na]
    at java.base/java.lang.Thread.run(Thread.java:834) ~[na:na]
Caused by: java.net.ConnectException: Connection refused (Connection refused)
    at java.base/java.net.PlainSocketImpl.socketConnect(Native Method) ~[na:na]
    at java.base/java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:399) ~[na:na]

如果我只是删除测试 mongo 依赖项,则不会启动上述 mongo 连接。

但是上面的测试中没有引用mongo,那么为什么spring会尝试启动mongo连接呢?

最佳答案

如果我必须用一句话来回答,这是因为 Springboot 是有主见的。一旦它通过 AutoConfiguration 类注意到 pom 中的 mongo 依赖关系,它就会尝试连接到 mongo。

如果你想覆盖默认行为并告诉Springboot不要执行MongoAutoConfiguration,那么你可以这样做

@SpringBootApplication(exclude=MongoAutoConfiguration.class)
public class YourMainApplication {

    public static void main(String[] args) {
        SpringApplication.run(TestApplication.class, args);
    }
}

或者您可以使用属性文件中的这一行来完成

spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration

如果您执行上述任一操作,那么它将从您的应用程序中排除 MongoAutoconfiguration(而不仅仅是从您的测试中)。这意味着当您启动应用程序时,您将无权访问 mongo(如果这是您想要的)。

由于 SpringbootTest 注释加载了整个应用程序上下文,因此它会查找此主应用程序类。如果您排除了一些自动配置,那么即使在您的测试中,它也会排除。所以你不会有连接到 mongo 的问题。

如果您希望仅在测试中排除此自动配置(以便在运行应用程序时不会更改任何内容),您可以这样做

@TestPropertySource(properties=
{"spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration"})
@SpringBootTest
public class GreetingControllerTests {...}

关于java - Spring boot在添加mongo-java-driver maven依赖时尝试连接mongo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58346858/

相关文章:

java - 创建您自己的地名词典列表

c# - java 和 c# 的 SHA1 哈希计算未返回相同的结果

使用 C# 驱动程序的 MongoDB 架构设计?

git - 带有git的maven发布插件在子文件夹中不起作用

jakarta-ee - 带有 main() 的 EJB - 这是怎么回事?

java - Maven 构建在运行时抛出 JodaTime 异常

java - 基于Spring注解的AOP拦截父类中实现的方法

java - 我应该了解 Java 开发堆栈的哪些组件?

javascript - 更新 mongodb 中的聚合结果?

java - Spring mongoTemplate 聚合不太好...请帮助我