Request with multipart/form-data returns 415 error
问题 I need to receive this request using Spring : POST /test HTTP/1.1 user-agent: Dart/2.8 (dart:io) content-type: multipart/form-data; boundary=--dio-boundary-3791459749 accept-encoding: gzip content-length: 151 host: 192.168.0.107:8443 ----dio-boundary-3791459749 content-disposition: form-data; name="MyModel" {"testString":"hello world"} ----dio-boundary-3791459749-- But unfortunately this Spring endpoint: @PostMapping(value = "/test", consumes = MediaType.APPLICATION_OCTET_STREAM_VALUE) public