Skip to content
Advertisement

spring boot REST POST method doesn’t work

I want to get the streamName parameter, which is generated when executing one method in the program where I made HTTPRequest and in response I want to get the generated hex string. I couldn’t find what is missing.

This is my code in spring boot:

JavaScript

PostResponse class:

JavaScript

method on another program where i make a request:

JavaScript

results in postman: enter image description here

Log: 2021-07-30 13:15:30.376 WARN 4398 — [nio-8080-exec-8] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot construct instance of com.example.restservice.PostResponse (although at least one Creator exists): no String-argument constructor/factory method to deserialize from String value (‘aes’); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of com.example.restservice.PostResponse (although at least one Creator exists): no String-argument constructor/factory method to deserialize from String value (‘aes’) at [Source: (PushbackInputStream); line: 1, column: 1]]

Advertisement

Answer

You are receiving “aes”

That’s not valid JSON.

The JSON your endpoint is accepting must be:

JavaScript

That it can be deserialized to PostResponse .

In the client you can use this class to:

JavaScript
Advertisement