spring-cloud-starter-gateway踩坑

java 复制代码
1.bean of type 'org.springframework.http.codec.ServerCodecConfigurer' that could not be found.
需要将项目中用到的spring-boot-starter-web依赖给去掉
去掉以下的
<dependency>
	<groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

2.springfox.documentation.service.ApiInfo
需要将项目中用到的关于swagger的依赖去掉例如knife4j-spring-boot-starter这个依赖需要集成spring-boot-starter-web
去掉以下的
<dependency>
	<groupId>com.github.xiaoymin</groupId>
	<artifactId>knife4j-spring-boot-starter</artifactId>
</dependency>
3.建议微服务项目,不要使用那么多层级的父子工程嵌套和集成,否则很容易出现这种问题,耦合度太高了
相关推荐
带刺的坐椅12 小时前
Solon Cloud Gateway 开发:导引
java·gateway·solon·solon cloud
问道飞鱼1 天前
【分布式知识】Spring Cloud Gateway实现跨集群应用访问
分布式·eureka·gateway
kerwin_code1 天前
SpringCloud Gateway 集成 Sentinel 详解 及实现动态监听Nacos规则配置实时更新流控规则
spring cloud·gateway·sentinel
微微%1 天前
SpringCloud微服务Gateway网关简单集成Sentinel
spring cloud·微服务·gateway
晨的挥霍3 天前
spring cloud之gateway和JWT回顾
spring·spring cloud·gateway
m0_748252233 天前
IP地址、子网掩码(NETMASK)和网关(Gateway)
tcp/ip·gateway·智能路由器
Icoolkj3 天前
微服务学习-Gateway 统一微服务入口
学习·微服务·gateway
rgrgrwfe5 天前
当遇到 502 错误(Bad Gateway)怎么办
gateway
BingoXing6 天前
Gateway与WebFlux
gateway
BingoXing6 天前
Gateway与WebFlux的整合
java·spring boot·spring cloud·gateway·webflux