如何防止在Spring Boot中自动启动tomcat/jetty,当我只想使用RestTemplate时
2022-09-01 16:34:47
我想通过在SpringBoot应用程序中包含工件来使用RestTemplate/TestRestTemplate。
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
但这会自动启动Tomcat或Jetty。有没有办法关闭它,或者通过不包括上述工件。TestRestTemplate 位于引导工件中,但不在基本 RestTemplate 中。