I have a problem during the deserialization of a json array using Spring. I have this json response from a service:
[
{
\"symbol\": \"XRPETH\",
Your response is simply List. But, your POJO has wrapped List. So, according to your POJO, your JSON should be
{
"accountOrders": [
{
But, you are JSON is
[
{
"symbol": "XRPETH",
"orderId": 12122,
....
So, there is mismatch and failing the deserialization. You need to change to
bodyToMono(AccountOrder[].class)