Ниже приведена конфигурация моего приложения
@SpringBootApplication
class DemoApplication {
static void main(String[] args) {
SpringApplication.run(DemoApplication, args)
}
@Bean
IntegrationFlow startHeatToJiraFlow() {
IntegrationFlows
.from(WebFlux.inboundGateway("/input1")
.requestMapping { m -> m.methods(HttpMethod.POST).consumes(MediaType.APPLICATION_JSON_VALUE) }
.requestPayloadType(ResolvableType.forClassWithGenerics(Mono, ServiceInput))
)
.channel("inputtestchannel")
.get()
}
@ServiceActivator(inputChannel = "inputtestchannel")
Map replyMessage() {
return [success: true]
}
class ServiceInput {
@NotBlank
String input1
@NotBlank
String input2
}
}
Я ожидаю, что следующий запрос curl выдаст мне ошибку, так как я не даю ввод JSON в теле.
curl -X POST localhost:8080/input1 -H "Content-Type:application/json"
Вместо этого я получаю ответ 200
{"success":true}
Что я здесь не так делаю?