bean of type 'org.springframework.http.codec.ServerCodecConfigurer' that could not be found

前端 未结 2 1043
没有蜡笔的小新
没有蜡笔的小新 2020-12-17 01:36

APPLICATION FAILED TO START


Description:

Parameter 0 of method modifyRequestBodyGatewayFilterFactory in org.springframework.cloud.ga

2条回答
  •  有刺的猬
    2020-12-17 02:26

    Try adding the below code. It worked for me

    @Bean
    public ServerCodecConfigurer serverCodecConfigurer() {
       return ServerCodecConfigurer.create();
    }
    

提交回复
热议问题