Tags
- web developer
- postman automations
- Front-end developer
- 다빈치 리졸브
- postman
- emplace_back
- C++
- postman collection variables
- postman csv
- MFC
- postman excel
- postman pre-request
- postman tests
- Android/iOS Developer
- 우수한 프런트 개발자
- postman collection
- LSL_Script
- c#
- UI/UX Engineer
- postman html parse
- solidity
- 프런트엔드
- Unity
- oracle
- postman session
- Android
- 좋은 개발자
- Java
- Intellij
- Interaction developer
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Archives
- Today
- Total
david's daily developer note
[BE] java "json to DTO" collection 본문
728x90
java 개발중에 json string에서 DTO를 만들거나, 여러 자료형으로 변환하는 경우가 종종 있는데,
할때마다 찾아보기 귀찮아서 이 글에다가 모아두기!
참고로 IntelliJ IDE를 사용하는 경우라면 json string으로 부터 자동으로 DTO Class를 생성해주는 plug-in이 존재한다.
plug-in : IntelliJ ▶ (Ctrl+Alt+S) or File -> Settings ▶DTO generator
Reference : https://dev-nomad.com/98
1. HttpResponse ▶ dto [], dto Array
HttpClient client = HttpClientBuilder.create().build();
HttpGet request = new HttpGet("serverUrl");
request.setHeader("Content-Type", "application/json");
request.addHeader("Authorization", authenticationToken);
HttpResponse response = client.execute(request);
HttpEntity entity = response.getEntity();
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
Dto DtoArray[] = objectMapper.readValue(EntityUtils.toString(entity, "UTF-8"), Dto[].class);
2. json string▶ dto list
List<Dto> dtoList = Arrays.asList(objectMapper.readValue(jsonString, Dto[].class));
계속 적자..
728x90
'[Develop] Web > Back-end' 카테고리의 다른 글
[BE] Spring AOP (0) | 2023.08.28 |
---|---|
[BE] IntelliJ Spring boot (WSL2) 프로젝트 설정 (1) | 2022.08.16 |
[BE] 크롬 개발자 도구에서 API Request, PostMan 복사하기 (0) | 2022.07.27 |
[BE] 코드 품질 추적을 위한 SonarLint (0) | 2022.07.18 |
[BE] Java Enum Class Example (0) | 2022.07.07 |