json between object (codehaus.jackson)
지정한 depth 까지만 object 로 변환하고 나머지는 기존 json string 을 유지해야 할 경우 String test_obj = "{\"title\":\"타이틀\",\"location\":\"회의실\",\"contact\":[\"김과장\",\"이과장\",\"박과장\"]}";System.out.println(test_obj);ObjectMapper mapper = new ObjectMapper();Map sample_map = new HashMap();sample_map.put("test", "value");sample_map = mapper.readValue(test_obj, new TypeReference(){});for(Entry entry : sample_map.entrySet()) {S..