problem
JSON.parseObject(decrypt, Map.class)
This error is reported when the String is converted to an object,
solution
Change to:
JSON.parseArray(decrypt, Map.class)
That's it.
In many cases, this kind of error is reported due to inconsistent transfer targets.