错误案例
产生的原因
原因是因为spring cloud gateway 是建立在spring boot 2.x 和 spring webflux基础上的既:gateway 本身已经包含了spring mvc 的功能,正与提示的一样和spring boot 的web starter冲突了
解决方式
找到gateway下面的spring-boot-starter-web依赖,然后将其注释掉文章来源:https://www.toymoban.com/news/detail-551734.html
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
文章来源地址https://www.toymoban.com/news/detail-551734.html
到了这里,关于Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway错误的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!