Robert Jaros
10/25/2025, 1:01 PMServerRequest.awaitBody<T>(). It does return an object with correct type but empty (no request data is deserialized). What am I missing?Robert Jaros
10/25/2025, 1:32 PMawaitBody<String>() instead, I see the content is read correctly (it's the correct json data). I also see the jackson codec is used to deserialize data, even though I have kotlinx.serialization in dependencies and no direct jackson dependency (but I'm not sure if it is related to my problem).Robert Jaros
10/25/2025, 2:39 PMjackson-databind dependency and my application started to work correctly (I assume with kotlinx.serialization instead of jackson)Robert Jaros
10/25/2025, 3:32 PMRobert Jaros
10/25/2025, 3:43 PMtools.jackson.module:jackson-module-kotlin dependency by default in Spring Boot 4. Adding the dependency manually fixes my problem.