String jsonCarArray = "[{ "color" : "Black", "type" : "BMW" }, { "color" : "Red", "type" : "FIAT" }]"; List<Car> listCar = objectMapper.readValue(jsonCarArray, new TypeReference<List<Car>>(){});