Spring 有一份关于 WebApplicationType 的官方文档
https://docs.spring.io/spring-boot/api/java/org/springframework/boot/WebApplicationType.html
应用层可以选择设置:
NONE
The application should not run as a web application and should not start an embedded web server.
REACTIVE
The application should run as a reactive web application and should start an embedded reactive web server.
SERVLET
The application should run as a servlet-based web application and should start an embedded servlet web server.
我无意中忘记设置spring.main.web-application-type=reactive
我的 spring webflux 应用程序。
我还无意中忘记设置spring.main.web-application-type=servlet
我的 spring mvc 应用程序。
但是,它们都能够处理请求,应用程序正常运行,一切似乎都很好。
因此,我有一个疑问,这个 WebApplicationType 的目的是什么?它似乎什么也没做
这是用于选择要运行哪种类型的应用程序。如果类路径上同时有 WebFlux 和 Spring MVC,Spring Boot 现在将知道要启动哪个,因此您需要选择它。或者,您仍然可以在类路径上使用 Spring MVC 或 Spring WebFlux,但您正在编写命令行应用程序,因此您不需要服务器并选择 NONE。