当前位置: 首页 > 知识库问答 >
问题:

@SpringBootTest用于非Spring-Boot应用程序

尹乐邦
2023-03-14
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = MyConfiguration.class)
public class MyIT { }

@RestController
public class MyController { }

这启动了一个嵌入式tomcat,我可以看到我的控制器正在初始化,但是,当使用TestRestTemplate调用服务时,我得到了一个404。DispatcherServlet似乎不知道我的控制器

另外,我必须定义一个servletContainer bean,如下所示

@Bean
public EmbeddedServletContainerFactory servletContainer() {
    TomcatEmbeddedServletContainerFactory factory = new TomcatEmbeddedServletContainerFactory();
    factory.setPort(9000);
    factory.setSessionTimeout(10, TimeUnit.MINUTES);
    return factory;
}

Spring是否缺少任何配置来让嵌入式Tomcat可以看到我的控制器?我尝试在测试类上使用@enableAutoConfiguration@ComponentScan,但没有任何效果。我在这方面浪费了两天时间,任何提示都非常感谢!!

@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, classes = { TestContextConfiguration.class })
public class MyIT {

@Value("${local.server.port}")
private int serverPort;

@Resource
private TestRestTemplate restTemplate;

@Test
public void test() throws Exception {
    System.out.println("Port:" + serverPort);
    System.out.println("Hello:" + this.restTemplate.getForEntity("/", String.class));
}
@RestController
public class MyController {

    @GetMapping("/")
    public String hello() {
        System.out.println("Hello called");
        return "Hello";
    }

}

测试的输出

Port:9000
Hello:<404 Not Found,<!DOCTYPE html><html><head><title>Apache Tomcat/8.5.5 - Error report</title><style type="text/css">H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}.line {height: 1px; background-color: #525D76; border: none;}</style> </head><body><h1>HTTP Status 404 - /</h1><div class="line"></div><p><b>type</b> Status report</p><p><b>message</b> <u>/</u></p><p><b>description</b> <u>The requested resource is not available.</u></p><hr class="line"><h3>Apache Tomcat/8.5.5</h3></body></html>,{Content-Type=[text/html;charset=utf-8], Content-Language=[en], Content-Length=[992], Date=[Wed, 05 Oct 2016 14:26:46 GMT]}>

共有1个答案

谷弘致
2023-03-14

这可以通过创建一个TestConfig内部类并用@SpringBootConfiguration注释它来实现,如下所示:

@SpringBootConfiguration
public static class TestConfig {
}

然后,在您的测试类中:

@RunWith(SpringRunner.class)
@SpringBootTest(...)
@Import(MyIT.TestConfig.class)
public class MyIT {

    @SpringBootConfiguration
    @ComponentScan("com.example")
    public static class TestConfig {
    }
}

注意,TestConfig类还有@ComponentScan注释。Spring使用它来查找您的applicacion bean。

 类似资料:
  • 我有一个简单的Spring-Boot应用程序,它只使用AMQP依赖项(仅-例如,没有web依赖项,所以JAR中没有包含应用服务器)。 我只想让应用程序运行并监听队列,并在收到消息时将一些信息记录到DB中--然而,由于没有应用程序服务器,它一启动就会再次关闭(因为什么都没有做)。在监听消息的同时,是否有一种最好的方法来保持应用程序的运行? 代码中没有什么令人惊讶的地方,只是标准的应用程序配置,然后还

  • 我在运行Spring Boot应用程序时得到一个NullPointerException,它由一个maven多模块项目组成,其中有域层、持久性层和Web层。 我没有逻辑或bean,只有一个简单的Main@SpringBootApplication类来启动服务器。

  • 我有一个简单的健康控制器定义如下: 以及测试它的测试类: 运行测试时,我得到以下错误: 下面是AppConfiguration。java与主spring boot app类在同一个包中定义: 主要类别: 如果我将测试类中的注释修改如下,测试通过: 我错过了什么?

  • 本文向大家介绍基于Spring Boot保护Web应用程序,包括了基于Spring Boot保护Web应用程序的使用技巧和注意事项,需要的朋友参考一下 如果在类路径上添加了Spring Boot Security依赖项,则Spring Boot应用程序会自动为所有HTTP端点提供基本身份验证。端点“/”和“/home”不需要任何身份验证。所有其他端点都需要身份验证。 要将Spring Boot S

  • 我正在使用非spring-boot应用程序,但我需要公开endpoint,它将返回在应用程序中配置的缓存。我看到了这篇文章,但它是针对Spring-Boot-ActuretVersion1.x的,我使用的是Spring-Boot-ActuretVersion2.1.3.Release,因为缓存endpoint在这个版本中可用。