어렵다 오늘...리스트

문이빈·2023년 9월 21일
0

List 객체 -< JSON 변환

<!-- 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);

이거 스프링이 다 알아서 처리해줌...

0개의 댓글