Unable to convert JSON Array into a List in Java
I have an issue in converting JSONArray into a List using Jackson Object Mapper. public class Main { public static void main(String[] args) throws Exception { String test = Files.readString(Path.of("test.json")); callRequired(test); } public static void callRequired(String test) { ObjectMapper mapper…