<!-- JSON -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230227</version>
</dependency>
------------------UserServiceImpl------------------
// List 객체 -> JSON객체로 변환
JSONObject json = new JSONObject();
JSONArray array = new JSONArray();
for(UserDTO userDTO : list){
JSONObject temp = new JSONObject();
temp.put("name", userDTO.getName());
temp.put("id", userDTO.getId());
temp.put("pwd", userDTO.getPwd());
array.put(temp);
}//for
json.put("list", array); //array를 json 안에 집어넣기
System.out.println();
System.out.println(json);
이거 스프링이 다 알아서 처리해줌...