spring-boot-starter-web包,会导致Gateway启动抛出异常
Posted vwater
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-boot-starter-web包,会导致Gateway启动抛出异常相关的知识,希望对你有一定的参考价值。
最近在用springcloud搭建一个web应用时,发现如果添加不要引入spring-boot-starter-web
包,会导致Gateway启动抛出异常,故使用
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
就不需要添加
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!--<version>2.1.1.RELEASE</version>-->
</dependency>
网上查了一下发现:Spring Cloud Gateway 是使用 netty+webflux 实现因此不需要再引入 web 模块。
以上是关于spring-boot-starter-web包,会导致Gateway启动抛出异常的主要内容,如果未能解决你的问题,请参考以下文章
使用 spring-boot-starter-web “找不到可接受的表示”