jackson 라이브러리쪽에보면 있다. ObjectMapper 의 readValue 메서드를 통해서 할 수 있다. 


map -> json 은

Map map = new HashMap();
map.put("1","a");
map.put("2","a");
map.put("3","a");

String json = null;

ObjectMapper objectMapper = new ObjectMapper();
objectMapper.registerModule(new AfterburnerModule());
try {
json = objectMapper.writeValueAsString(map);
} catch (JsonProcessingException e) {
e.printStackTrace();
}

간단한 예제인다. 참고바란다. 


+ Recent posts