How to prevent auto start of tomcat/jetty in Spring Boot when I only want to use RestTemplate

前端 未结 3 2052
时光取名叫无心
时光取名叫无心 2021-02-05 05:57

I want to use RestTemplate/TestRestTemplate by including the artifact in a SpringBoot application

    
        org.springframewo         


        
3条回答
  •  独厮守ぢ
    2021-02-05 06:34

    Since Spring Boot 2.0.0 this property is deprecated and following is the new way:

    spring.main.web-application-type=none
    

    This change is because Spring Boot the support for reactive server.

提交回复
热议问题