마지막으로 hashmap 을 json으로 만드는 방법과, JsonObject를 생성하는 방법이다.
Spring boot Json 1편, 2편, 3편, 4편
1. 2018/11/06 - [Spring Boot] - Spring Boot Json, JsonObject로 만들기 - JSON 1편
2. 2018/11/07 - [Develop/Spring Boot] - Spring Boot Json, Gson을 이용한 JsonObject to String, String to JsonObject- JSON 2편
3. 2018/11/09 - [Develop/Spring Boot] - Spring Boot Json, Jackson을 이용한 JsonParsing - Json 3편
4. 2018/11/12 - [Develop/Spring Boot] - Spring Boot Deserialization Json, Deserialization JsonString to JsonObject - Json 4편
번외 Database의 값을 Json으로 select하는 방법.
1. 2018/10/24 - [Spring Boot] - Spring boot jpa map, hashmap, JSON형식
2. 2018/10/28 - [Spring Boot] - Spring boot JPA EntityManager를 이용한 Map형식으로 mapping하기
Spring boot에서 MySQL JSON 타입 SELECT하는 방법
1. 2018/11/30 - [Develop/Spring Boot] - Spring boot MySQL JSON - MySQL JSON DATA TYPE 값 가져오기
HashMap을 Json으로 만드는 방법을 배우기에 앞서 JsonObject를 생성하는 방법을 먼저 본다.
1. google-json-simple을 이용한 JsonObject 만드는 방법.
xml에 아래와 같은 dependency를 추가한다.
com.googlecode.json-simple
json-simple
1.1
우리가 만들어볼 Json예제는 4편에서 사용한 Json이다.
{
"id": 1,
"password": "1234",
"details": [
{
"name": "test",
"age": 20
},{
"name": "test2",
"age": 21
}
]
}
그리고 아래와 같이 JSONObject라는 것과 JSONArray라는 것을 사용하여 JSON을 생성할 수 있다.
public void test() {
JSONObject obj = new JSONObject();
JSONArray arr = new JSONArray();
obj.put("id", 1);
obj.put("password", "1234");
JSONObject obj2 =new JSONObject();
obj2.put("name", "test");
obj2.put("age", 20);
arr.add(obj2);
obj2 = new JSONObject();
obj2.put("name", "test2");
obj2.put("age", 21);
arr.add(obj2);
obj.put("details", arr);
System.out.println(obj.toString());
}

현재는 Json이 Array를 포함하여 JSONArray를 사용하였지만 일반 적인 key : value 형태는 JSONObject 하나만으로도 생성할 수 있다.
2. Gson을 이용한JsonObject 생성
이 방법은 Json 2편에서 배웠으나 이번엔 Array를 사용하기 때문에 다시 한번 해본다. 사실 위의 json-simple과 별반 다를게 없다.
public void test() {
Gson gson = new Gson();
JsonObject obj = new JsonObject();
JsonArray arr = new JsonArray();
obj.addProperty("id", 1);
obj.addProperty("password", "1234");
JsonObject obj2 = new JsonObject();
obj2.addProperty("name", "test");
obj2.addProperty("age", 20);
arr.add(obj2);
obj2= new JsonObject();
obj2.addProperty("name", "test2");
obj2.addProperty("age", 21);
arr.add(obj2);
obj.add("details", arr);
String jsonString = obj.toString();
System.out.println("gson을 이용한 객체생성");
System.out.println(jsonString);
}

3. HashMap을 Json으로 만드는 방법.
HashMap<String, Object>를 선언해서 이번 편에서 했던 모든 것들(json-simple의 obj와 gson의 obj)을 HashMap에 put해보고
일반 데이터를 HashMap에 put해서 json으로 변환해 보는 법을 해본다. 그리고 gson의 prettyprinting을 이용하여 예쁘게 출력해본다.
public void test() {
JSONObject obj = new JSONObject();
JSONArray arr = new JSONArray();
obj.put("id", 1);
obj.put("password", "1234");
JSONObject obj2 = new JSONObject();
obj2.put("name", "test");
obj2.put("age", 20);
arr.add(obj2);
obj2 = new JSONObject();
obj2.put("name", "test2");
obj2.put("age", 21);
arr.add(obj2);
obj.put("details", arr);
JsonObject g_obj = new JsonObject();
JsonArray g_arr = new JsonArray();
g_obj.addProperty("id", 1);
g_obj.addProperty("password", "1234");
JsonObject g_obj2 = new JsonObject();
g_obj2.addProperty("name", "test");
g_obj2.addProperty("age", 20);
g_arr.add(g_obj2);
g_obj2 = new JsonObject();
g_obj2.addProperty("name", "test2");
g_obj2.addProperty("age", 21);
g_arr.add(g_obj2);
g_obj.add("details", g_arr);
HashMap map = new HashMap();
map.put("json-simple", obj);
map.put("gson", g_obj);
map.put("HashMap", "맵테스트");
map.put("숫자테스트", 1234567890);
Gson gson = new GsonBuilder().setPrettyPrinting().create();
String jsonString = gson.toJson(map, new TypeToken

이로써 Spring boot 에서의 Json에 대한 학습을 마무리한다.
1편부터 마지막편까지의 내용과 번외편 내용 2개만 알아도 Spring boot에서 모든 데이터들을 Json으로 만들 수 있다.