本文最后更新于 2024-09-19,文章内容可能已经过时。

一、问题描述

Description:

Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway.

Action:

Please set spring.main.web-application-type=reactive or remove spring-boot-starter-web dependency.

二、解决思路

在springcloud整合gateway时, gateway组件中的 【spring-boot-starter-webflux】 和 springboot作为web项目启动必不可少的 【spring-boot-starter-web】 出现冲突。

三、解决方案

找到并排除冲突依赖即可。

参考:gateway整合springboot jar包冲突,Please set spring.main.web-application-type=reactive or remove spring-boo-CSDN博客