spring-boot-starter-webflux是否包括spring-boot-starter-web?

时间:2019-01-07 15:24:27

标签: spring-webflux

我可以使用仅添加spring-boot-starter-web的现有spring-boot-starter-webflux编码方案吗?没有spring-boot-starter-web

1 个答案:

答案 0 :(得分:0)

spring-boot-starter-webflux为Spring WebFlux应用程序提供了相关的依赖关系,从Jackson到spring-webflux模块,用于注释和功能编程模型。

spring-boot-starter-web对于Spring MVC也是一样。

在类路径上同时具有这两个元素意味着您想要一个Spring MVC应用程序,并且仍在该应用程序中使用Spring WebFlux提供的新WebClient

the Spring Boot reference documentation中所述,如果要创建Spring WebFlux应用程序并避免添加spring-boot-starter-webflux,则应添加spring-boot-starter-web