SpringCloud Gateway
APPLICATION FAILED TO START
Description:
Parameter 0 of method modifyRequestBodyGatewayFilterFactory in
org.springframework.cloud.gateway.config.GatewayAutoConfiguration required a bean of type
‘org.springframework.http.codec.ServerCodecConfigurer’ that could not be found.
Action:
Consider defining a bean of type ‘org.springframework.http.codec.ServerCodecConfigurer’ in your configuration.
原因:spring-cloud-starter-gateway 与 spring-boot-starter-web 冲突
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
修改为下面:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</exclusion>
</exclusions>
</dependency>
博客内容讲述了在使用SpringCloudGateway时遇到的启动失败问题,原因是spring-cloud-starter-gateway与spring-boot-starter-web存在冲突。解决方案是排除这两个依赖。通过在pom.xml文件中对spring-cloud-starter-gateway的依赖进行排除操作,可以避免冲突,从而成功启动应用。
1681

被折叠的 条评论
为什么被折叠?



