배열구조를 map으로 할려면
List<Map<String, Object>> 이런식으로 map을 list에 담아야겠죠..
json array to list
import org.json.*;
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.core.type.*;
ObjectMapper mapper = new ObjectMapper();
List<Map<String, Object>> data = mapper.readValue
(json, new TypeReference<List<Map<String, Object>>>(){});