List<json형식> 을 json<list<json>>형식으로
JobDto 라는 이런 형식의 json이 있다. { "jobId": 0, "title": "string", "detail": "string", "monthlySalary": 0, "creditLimit": 0, "modifyCredit": true, "withdrawClass": true, "withdrawStudent": true } 하지만 이를 한번에 여러개 전달해야하는 경우가 있었고 난 단순하게 List 로 return하였다 List 이런식으로 [ { "jobId": 1, "title": "master", "detail": "", "monthlySalary": 0, "creditLimit": 0, "modifyCredit": false, "withdrawClass": false, "withdrawS..