解决Please set spring.main.web-application-type=reactive or remove spring-boot-starter-web dependency.
原因很明显:SpringMVC和SpringCloudGateway不共存,但是我子项目pom文件根本没有spring-boot-starter-web,是从父项目继承过来的
解决方法①:在application.yml添加spring.main.web-application-type=reactive
格式如图解决方法②:用exclusions排除spring-boot-starter-web依赖
org.springframework.boot spring-boot-starter-web * *
文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。