SpringCloud Gateway报错 :Consider defining a bean of type ‘org....
AI-摘要
Tianli GPT
AI初始化中...
介绍自己
生成本文简介
推荐相关文章
前往主页
前往tianli博客
网关SpringCloud Gateway报错 :Consider defining a bean of type ‘org.springframework.http.codec.ServerCodec
网关异常报Consider defining a bean of type 'org.springframework.http.codec.ServerCodec,
要排除其他依赖的spring-boot-starter-web,因为会与spring cloud gateway的webflux冲突。
<!-- 核心模块,因为我的核心模块引入了spring-boot-starter-web,将其排除 -->
<dependency>
<groupId>huluwa</groupId>
<artifactId>boss-xtrain-core</artifactId>
<version>${huluwa.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--新增gateway,要排除其他依赖的spring-boot-starter-web,因为会与gateway的webflux冲突
不排除依赖报Consider defining a bean of type 'org.springframework.http.codec.ServerCodecConfigurer' in your configuration.-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
本文是原创文章,采用 CC BY-NC-ND 4.0 协议,完整转载请注明来自 程序员风离
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果