Gateway模块中启动报:Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway at this

2022/8/13 23:23:48

本文主要是介绍Gateway模块中启动报:Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway at this,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

原因是引入了 spring-boot-starter-web依赖

在pom文件中将 spring-boot-starter-web 依赖移除即可

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
</dependency>


这篇关于Gateway模块中启动报:Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway at this的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程