申请启动失败
描述:modifyRequestBodyGatewayFilterFactory
中的org.springframework.cloud.gateway.config.GatewayAutoConfiguration
方法的参数0需要一个找不到'org.springframework.http.codec.ServerCodecConfigurer'
类型的bean。
行动:
考虑在配置中定义'org.springframework.http.codec.ServerCodecConfigurer'
类型的bean。
捡起JAVA_TOOL_OPTIONS:-agentlib:jvmhook
拾取了_JAVA_OPTIONS:-Xbootclasspath/a:“C:\Program Files(x86)\HPE\Unified Functional Testing\bin\java_shared\classes\jasmine.jar”
捡起JAVA_TOOL_OPTIONS:-agentlib:jvmhook
最佳答案
尝试添加以下代码。对我有用
@Bean
public ServerCodecConfigurer serverCodecConfigurer() {
return ServerCodecConfigurer.create();
}