✅ 操作成功!

springCloud Gateway 报错:Consider defining a bean of type ‘org.springframework

发布时间:2023-06-12 作者:admin 来源:文学

springCloud Gateway 报错:Consider defining a bean of type ‘org.springframework

springCloud Gateway 报错:Consider defining a bean of type ‘org.springframework

网关异常报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>

至此,成功解决~

👁️ 阅读量:0