Web controller call with invalid body resulting in 500 instead of 400 when using kotlinx-serialization #33138
Labels
in: web
Issues in web modules (web, webmvc, webflux, websocket)
theme: kotlin
An issue related to Kotlin support
type: bug
A general bug
Milestone
Consider the following controller:
If I run
curl -X POST --location http://localhost:8080/test -H "Content-Type: application/json" -d '{"message2": "hello"}'
, I get a 500 instead of a 400.If I just comment out the
@Serializable
from theBody
data class, then Spring falls back to Jackson and I get a 400 instead.I did some quick debugging, and it seems that
KotlinSerializationJsonDecoder
is at fault here; if you look atorg.springframework.http.codec.json.AbstractJackson2Decoder#processException
, it is catchingcom.fasterxml.jackson.core.JsonProcessingException
and throwingorg.springframework.core.codec.DecodingException
, which is then caught byorg.springframework.web.reactive.result.method.annotation.AbstractMessageReaderArgumentResolver#handleReadError
and converted into aorg.springframework.web.server.ServerWebInputException
which eventually results on a 400.KotlinSerializationJsonDecoder
, on the other hand, never catcheskotlinx.serialization.json.internal.JsonDecodingException
(which is thrown bydecodeFromString
) and converts it toorg.springframework.core.codec.DecodingException
, so it bubbles all the way up as a 500 error:The text was updated successfully, but these errors were encountered: